Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Numpy and Cython for Python 3.10 and 3.11 builds #151

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,15 @@ jobs:
os: ubuntu-latest
pyver: cp310-cp310
piparch: manylinux2014_x86_64
numpy: numpy==1.22.0
cython: Cython==0.29.23
numpy: numpy==2.0.1
cython: Cython==3.0.10

- name: linux 3.11 amd64
os: ubuntu-latest
pyver: cp311-cp311
piparch: manylinux2014_x86_64
numpy: numpy==1.23.5
cython: Cython==0.29.35
numpy: numpy==2.0.1
cython: Cython==3.0.10

- name: linux 3.12 amd64
os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires = [
"setuptools_dso>=2.11a2; python_version>='3.12'",
"wheel",
"numpy",
"numpy>=2.0.1; python_version>='3.10'",
"numpy>=2.0.1,<2.3; python_version>='3.10'",
"Cython>=0.20",
"epicscorelibs==7.0.7.99.0.2; python_version<='3.11'",
"epicscorelibs>=7.0.7.99.1.1a2; python_version>='3.12'",
Expand Down
2 changes: 1 addition & 1 deletion src/p4p/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ def __ge__(self, o):
def __gt__(self, o):
return self._cmp(o)>0

version = Version('4.2.0a1')
version = Version('4.2.0a2')
Loading