Skip to content

Commit

Permalink
Require Python ^ 3.9; remove Python 3.8 from CI matrix and from black…
Browse files Browse the repository at this point in the history
… `target-version`s, as black no longer supports it.
  • Loading branch information
elliot-100 committed Oct 10, 2024
1 parent 13d3db0 commit bf5345d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- name: Check out repository
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = 'README.md'
repository = 'https://github.com/Olen/Spond'

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
aiohttp = "^3.8.5"

[tool.poetry.group.dev.dependencies]
Expand All @@ -19,7 +19,7 @@ pytest-asyncio = "^0.23.6"

[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313']
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']

[tool.isort]
profile = "black"
Expand Down

0 comments on commit bf5345d

Please sign in to comment.