Skip to content

Commit

Permalink
remove numpy version constraints as it'll be backwards compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
letmaik authored Jul 14, 2024
1 parent 3b6c72f commit d83f75a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.12.0] - 2024-06-23
## [0.12.0] - 2024-07-14
### Changed
- Require numpy 2.0 or higher.
- Support numpy 2.

### Removed
- Drop Python 3.8 support.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def build_extensions(self):
ext_modules=ext_modules,
packages = find_packages(),
setup_requires=['pybind11>=2.6.0'],
install_requires=['numpy>=2.0'],
install_requires=['numpy'],
cmdclass={'build_ext': BuildExt},
zip_safe=False,
)

0 comments on commit d83f75a

Please sign in to comment.