diff --git a/CHANGELOG.md b/CHANGELOG.md index 01866d3..f0d7ff9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 56babb8..57daef3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] diff --git a/src/evaldet/__init__.py b/src/evaldet/__init__.py index d80cc51..c6fe25e 100644 --- a/src/evaldet/__init__.py +++ b/src/evaldet/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.0" +__version__ = "0.4.1" from .detections import Detections # noqa: F401 from .tracks import Tracks # noqa: F401