Skip to content

Commit

Permalink
Merge pull request #11 from MiXaiLL76/dev
Browse files Browse the repository at this point in the history
update from dev
  • Loading branch information
MiXaiLL76 authored Jul 30, 2023
2 parents 1b71474 + f8cec72 commit 611749b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 7 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
all: docker-sdist docker-3.7 docker-3.8 docker-3.9 docker-3.10
all: docker-sdist docker-3.7 docker-3.8 docker-3.9 docker-3.10 docker-3.11
ls -lah dist

sdist:
Expand Down Expand Up @@ -26,6 +26,9 @@ docker-3.9:
docker-3.10:
bash docker/auto_build.sh "cp310-cp310" wheel

docker-3.11:
bash docker/auto_build.sh "cp311-cp311" wheel

pull:
twine check dist/*
twine upload --repository testpypi dist/*
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ cur.plot_pre_rec(plotly_backend=False)

## history

### v1.3.3

- [x] fix by ViTrox <https://github.com/vitrox-technologies/faster_coco_eval>
- missing file issue
- issue discovered by torchmetric
- fstring for python3.7
- Windows compilation

### v1.3.2

- [x] rework math_matches function. moved to faster_eval_api
Expand Down
4 changes: 2 additions & 2 deletions examples/curve_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"faster_coco_eval.__version__='1.3.2'\n"
"faster_coco_eval.__version__='1.3.3'\n"
]
}
],
Expand Down Expand Up @@ -179,7 +179,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
"version": "3.10.6"
}
},
"nbformat": 4,
Expand Down
4 changes: 2 additions & 2 deletions examples/eval_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"faster_coco_eval.__version__='1.3.2'\n"
"faster_coco_eval.__version__='1.3.3'\n"
]
}
],
Expand Down Expand Up @@ -162,7 +162,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
"version": "3.10.6"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion faster_coco_eval/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.3.2'
__version__ = '1.3.3'
__author__ = 'MiXaiLL76'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ requires = [
"numpy",
"cython",
"build>=0.10.0",
"pybind11~=2.6.1",
"pybind11==2.11.1",
]
build-backend = 'setuptools.build_meta'

0 comments on commit 611749b

Please sign in to comment.