Skip to content

Commit

Permalink
Tweak flask version in compatibility CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alisaifee committed Nov 25, 2023
1 parent 3159f82 commit 00dd023
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -44,7 +44,7 @@ jobs:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
flask-version: [">2,<2.1", ">=2.1,<2.2", ">=2.2,<2.3", ">=2.3,<2.4"]
flask-version: ["flask>=2.2,<2.3", "flask>=2.3,<2.4", "flask>=3.0,<3.1"]
steps:
- uses: actions/checkout@v3
- name: Cache dependencies
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Install Flask ${{ matrix.flask-version }}
run: |
pip uninstall -y flask werkzeug
pip install "flask${{ matrix.flask-version }}"
pip install "${{ matrix.flask-version }}"
- name: Test
run: |
pytest --cov-report=xml
Expand Down

0 comments on commit 00dd023

Please sign in to comment.