Skip to content

Commit

Permalink
Fixing werkzeug compatibility (#148)
Browse files Browse the repository at this point in the history
* Fixing werkzeug compatibility

* Bumping flask to v3.0.0 rather than limiting Werkzeug

* Updating python versions to current supported set

* Removing 3.12 in leiu of another PR
  • Loading branch information
LeStarch authored Oct 18, 2023
1 parent 8c0d105 commit eada0c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fprime-gds-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gds-cli-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
python_requires=">=3.7",
setup_requires=["setuptools_scm"],
install_requires=[
"flask>=2.2.0",
"flask>=3.0.0",
"flask_compress>=1.11",
"pyzmq>=24.0.1",
"pexpect>=4.8.0",
Expand All @@ -118,6 +118,6 @@
"argcomplete>=1.12.3",
"Jinja2>=2.11.3",
"openpyxl>=3.0.10",
"pyserial>=3.5"
"pyserial>=3.5",
],
)

0 comments on commit eada0c2

Please sign in to comment.