Skip to content

Commit

Permalink
Drop 3.7 and run tests for newer python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolCat467 committed May 22, 2024
1 parent a6531ba commit cbfda8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.7', '3.8', '3.9', '3.10']
python: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- name: Checkout
Expand All @@ -34,7 +34,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11-dev']
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
check_formatting: ['0']
extra_name: ['']
include:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.7', '3.8', '3.9', '3.10']
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers=[
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
# attrs 19.2.0 adds `eq` option to decorators
"attrs>=19.2.0"
Expand Down Expand Up @@ -125,7 +125,7 @@ known_first_party = ["outcome"]


[tool.mypy]
python_version = "3.7"
python_version = "3.8"

# Be strict about use of Mypy
strict = true
Expand Down

0 comments on commit cbfda8e

Please sign in to comment.