Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Jun 20, 2024
1 parent 99c9b1d commit 8f95218
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -35,6 +35,8 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v2
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
requires = ["setuptools",
"wheel",
"cython",
"oldest_supported_numpy"]
"numpy>=2.0.0; python_version>='3.9'",
"oldest_supported_numpy; python_version<'3.9'"]

0 comments on commit 8f95218

Please sign in to comment.