Skip to content

Commit

Permalink
Bump CI oldest python version tested from 3.7 to 3.8.
Browse files Browse the repository at this point in the history
3.7 is EOL as of end of June 2023, so hopefully this isn't controversial.
  • Loading branch information
namcsi committed Jul 16, 2023
1 parent d6c3bd5 commit 5f83488
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- name: "checkout repository"
uses: actions/checkout@v3

- name: "setup python 3.7"
- name: "setup python 3.8"
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8

- name: "setup python 3.11"
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
EDITABLE_TESTS = True
PYTHON_VERSIONS = None
if "GITHUB_ACTIONS" in os.environ:
PYTHON_VERSIONS = ["3.7", "3.11"]
PYTHON_VERSIONS = ["3.8", "3.11"]
EDITABLE_TESTS = False


Expand Down

0 comments on commit 5f83488

Please sign in to comment.