diff --git a/CHANGELOG.md b/CHANGELOG.md index 941c1af..cc76e9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ # Changelog +## Version 0.2.8 + +- Set dependency for `scipy`. Seems like the hstack and vstack functions +have been updated in 1.13.0+. + + +## Version 0.2.0 - 0.2.7 -## Version 0.2.0 - Support multi apply +- Add tests and documentation +- Sync package with the rest of the BiocPy ## Version 0.1 (development) diff --git a/setup.cfg b/setup.cfg index 55ce1f1..800d649 100644 --- a/setup.cfg +++ b/setup.cfg @@ -41,7 +41,7 @@ package_dir = =src # Require a min/specific Python version (comma-separated conditions) -# python_requires = >=3.8 +python_requires = >=3.8 # Add here dependencies of your project (line-separated), e.g. requests>=2.2,<3.0. # Version specifiers like >=2.2,<3.0 avoid problems due to API changes in @@ -50,7 +50,7 @@ package_dir = install_requires = importlib-metadata; python_version<"3.8" numpy - scipy + scipy<1.13.0 [options.packages.find]