Skip to content

Commit

Permalink
fixup! TST: revert numpy bump
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Mar 1, 2024
1 parent 29dc494 commit 82a48a4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
- os: ubuntu-20.04
python-version: '3.9'
deps: minimal
pip-args: --constraint requirements/min_constraints.txt

fail-fast: false

concurrency:
Expand All @@ -48,12 +50,13 @@ jobs:

- run: |
python -m pip install --upgrade pip
python -m pip install -r requirements/dev.txt
python -m pip install -r requirements/dev.txt ${{ matrix.pip-args }}
- if: matrix.deps == 'minimal'
run: |
pipx run uv pip compile pyproject.toml --resolution=lowest-direct > mindeps.txt
python -m pip install --requirement mindeps.txt
python -m pip install --requirement mindeps.txt \
--only-binary ':all:' ${{ matrix.pip-args }}
- name: Build
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ requires-python = ">=3.9, <4"
dependencies = [
"colorspacious>=1.1.0",
"matplotlib>=3.5",
"numpy>=1.22.4",
"numpy>=1.19.5",
]

[project.urls]
Expand Down
1 change: 1 addition & 0 deletions requirements/min_constraints.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
scipy<1.11

0 comments on commit 82a48a4

Please sign in to comment.