Skip to content

Commit

Permalink
Fix numpy versions
Browse files Browse the repository at this point in the history
  • Loading branch information
v1kko authored Jun 26, 2024
1 parent 273f7b6 commit 097e93c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id-token: write
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [
'setuptools',
'setuptools-scm',
'cython',
'numpy ; python_version>="3.0"',
'numpy<2 ; python_version>="3.0"',
'numpy<1.17 ; python_version<"3.0"',
]
build-backend = "setuptools.build_meta"
Expand Down Expand Up @@ -33,7 +33,7 @@ classifiers = [
]
dependencies = [
'requests',
'numpy ; python_version>="3.0"',
'numpy<2 ; python_version>="3.0"',
'scipy ; python_version>="3.0"',
'numpy<1.17 ; python_version<"3.0"',
'scipy<1.3 ; python_version<"3.0"',
Expand Down

0 comments on commit 097e93c

Please sign in to comment.