Skip to content

Commit

Permalink
ci: update workflows to use our minimum supported version, python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ctran88 committed Dec 2, 2024
1 parent 0c73352 commit c9b9969
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.7"
- name: Install dependencies
run: pip install -e .[dev]
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-python@v5
with:
python-version: "3.x"
python-version: "3.7"
if: ${{ steps.release.outputs.release_created }}
- name: Install dependencies
if: ${{ steps.release.outputs.release_created }}
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
"passageidentity.openapi_client.models": "passageidentity/openapi_client/models",
},
install_requires=[
"cryptography >= 44.0.0", # used by pyjwt
"importlib-metadata >= 8.5.0", # required for python < 3.8
"pydantic >= 2.10.2", # used by codgen
"pyjwt >= 2.10.1",
"cryptography >= 44.0.0", # used by pyjwt
"importlib-metadata >= 6.7.0", # required for python < 3.8
"pydantic >= 2.5.3", # used by codgen
"pyjwt >= 2.8.0",
"requests >= 2.32.3",
],
extras_require={
Expand Down

0 comments on commit c9b9969

Please sign in to comment.