Skip to content

Commit

Permalink
remove constraints.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenwacker committed Jul 29, 2024
1 parent 61c56a5 commit 3cadc6c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install . -c constraints.txt
pip install .
- name: Lint with flake8
run: |
pip install flake8 -c constraints.txt
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pip install pytest==8.2.2 -c constraints.txt
pip install pytest==8.2.2
PYTHONPATH=. pytest
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies = [
"dask[diskcache]",
"h5py",
"hdf5plugin",
"werkzeug==3.0.1",
"werkzeug>=3.0.1",
"packaging==21.3.0"
]
dynamic = ["version"]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ packaging==21.3.0
beautifulsoup4
brotlipy
wget
werkzeug==3.0.1 # Werkzeug2.3.1 destroys uploaded chunked files
werkzeug>=3.0.1 # Werkzeug2.3.1 destroys uploaded chunked files

0 comments on commit 3cadc6c

Please sign in to comment.