Skip to content

Commit

Permalink
set min python version to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmgray committed Oct 21, 2024
1 parent ca86f21 commit c506c68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.12']
env: [base]
include:
- os: macos-latest
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ readme = { file = "README.md", content-type = "text/markdown" }
dynamic = ["version"]
authors = [{ name = "Johnnie Gray", email = "johnniemcgray@gmail.com" }]
license = { text = "Apache" }
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -71,9 +70,9 @@ max_line_length = 79

[tool.ruff]
line-length = 79
target-version = "py38"
target-version = "py39"
lint.ignore = ["E741"]

[tool.black]
line-length = 79
target-version = ['py38']
target-version = ['py39']

0 comments on commit c506c68

Please sign in to comment.