Skip to content

Commit 25f2412

Browse files
Numpy 2 support
1 parent d5765df commit 25f2412

File tree

4 files changed

+7
-34
lines changed

4 files changed

+7
-34
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10"]
19+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
2020

2121
steps:
2222
- uses: actions/checkout@v3

.travis.yml.deprecated

Lines changed: 0 additions & 31 deletions
This file was deleted.

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
1.1.0 (2024-06-22)
5+
------------------
6+
* Support for Numpy 2 without any need for changes
7+
48
1.0.4 (2023-02-27)
59
------------------
610
* Deprecated `requires.io` and `travis`

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def read(*names, **kwargs):
2424

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

0 commit comments

Comments
 (0)