Skip to content

Commit

Permalink
Numpy 2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis-van-Gils committed Jun 22, 2024
1 parent d5765df commit 25f2412
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
31 changes: 0 additions & 31 deletions .travis.yml.deprecated

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

1.1.0 (2024-06-22)
------------------
* Support for Numpy 2 without any need for changes

1.0.4 (2023-02-27)
------------------
* Deprecated `requires.io` and `travis`
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read(*names, **kwargs):

setup(
name="dvg-ringbuffer",
version="1.0.4",
version="1.1.0",
license="MIT",
description="Numpy ring buffer at a fixed memory address to allow for significantly sped up numpy, sigpy, numba & pyFFTW calculations.",
long_description="%s\n%s"
Expand Down Expand Up @@ -74,7 +74,7 @@ def read(*names, **kwargs):
],
python_requires="~=3.0",
install_requires=[
"numpy~=1.15",
"numpy>=1.15,<3.0",
],
extras_require={},
)

0 comments on commit 25f2412

Please sign in to comment.