Skip to content

Commit

Permalink
Remove upper limits on dependencies (#38)
Browse files Browse the repository at this point in the history
* Remove upper limits on dependencies

* Update CHANGELOG.md

* Bump version
  • Loading branch information
tadejsv authored Jul 12, 2024
1 parent 27c22f8 commit 66db55c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,20 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## 0.4.1 - 2024-07-12

* Remove upper limits on dependencies (#38)

## 0.4.0 - 2023-06-06

* Drop support for Python 3.8, add support for Python 3.11 (#36)
### Added

* Add module for computing COCO object detection metrics (#36)
* Add Detections class to represent object detections, and load from and save to COCO and parquet formats (#36)

### Changed

* Drop support for Python 3.8, add support for Python 3.11 (#36)
* Refactor the individual MOT metrics from classes to functions (#36)

## [0.3.0] - 2022-12-02
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ classifiers = [
"Topic :: Scientific/Engineering :: Image Recognition",
]
dependencies = [
"numpy~=1.23",
"scipy~=1.9",
"numba~=0.56",
"numpy>=1.23",
"scipy>=1.9",
"numba>=0.56",
"pyarrow>=10.0"
]
dynamic = ["version"]
Expand Down
2 changes: 1 addition & 1 deletion src/evaldet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.0"
__version__ = "0.4.1"

from .detections import Detections # noqa: F401
from .tracks import Tracks # noqa: F401

0 comments on commit 66db55c

Please sign in to comment.