Skip to content

Commit

Permalink
fix: pin Werkzeug version (#549)
Browse files Browse the repository at this point in the history
`Werkzeug` is a direct dependency, we should pin it too. I also noticed
the Python version needed fixing. And it would be nice to see what is
installed for troubleshooting purposes.
  • Loading branch information
coryan authored Oct 5, 2023
1 parent cc471a3 commit 58005cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
pip install -e .
pip list
- name: Run Unit Tests with Coverage
env:
PYTHONPATH: "."
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"testbench/servers",
"gcs",
],
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=[
"grpcio==1.59.0",
"googleapis-common-protos==1.60.0",
Expand All @@ -52,5 +52,6 @@
"crc32c==2.3",
"gunicorn==21.2.0",
"waitress==2.1.2",
"Werkzeug==3.0.0",
],
)

0 comments on commit 58005cb

Please sign in to comment.