Skip to content

Commit

Permalink
chore: Drop support for Python 3.7 (#188)
Browse files Browse the repository at this point in the history
* chore: Drop support for Python 3.7

* Add concurrency check
  • Loading branch information
edgarrmondragon committed Sep 5, 2023
1 parent 6b3b7c7 commit d12d8ce
Show file tree
Hide file tree
Showing 4 changed files with 360 additions and 297 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
- .github/workflows/test.yml
- .github/workflows/constraints.txt

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
tests:
runs-on: ubuntu-latest
Expand All @@ -38,7 +42,6 @@ jobs:
- {python-version: "3.10", session: "tests"}
- {python-version: "3.9", session: "tests"}
- {python-version: "3.8", session: "tests"}
- {python-version: "3.7", session: "tests"}

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
src_dir = "tap_jotform"
tests_dir = "tests"

python_versions = ["3.11", "3.10", "3.9", "3.8", "3.7"]
python_versions = ["3.11", "3.10", "3.9", "3.8"]
main_python_version = "3.10"
locations = src_dir, tests_dir, "noxfile.py"
nox.options.sessions = (
Expand Down
Loading

0 comments on commit d12d8ce

Please sign in to comment.