Skip to content

Commit

Permalink
Python 3.7 is EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
dansondergaard committed Jun 18, 2024
1 parent 6d2aaab commit 3c41ec7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
os: ["macos-latest", "ubuntu-latest"]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def build(session):
session.run("flit", "build", "--no-setup-py", "--format", "wheel")


@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"])
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
def test(session):
# urllib3 v2 came out and shows an openssl error (at least on Py37).
# For now we'll just force <2 to make stuff work.
Expand Down

0 comments on commit 3c41ec7

Please sign in to comment.