Skip to content

Commit

Permalink
chores: drop python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
kalekseev committed Jul 10, 2024
1 parent a00ac3e commit 41ccf60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,14 @@ jobs:
strategy:
matrix:
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13.0-beta.3"]
python-version: [3.9, "3.10", "3.11", "3.12", "3.13.0-beta.3"]
django-version:
- "Django>=4.2,<5.0"
- "Django>=5.0,<5.1"
- "Django==5.1b1"
exclude:
- django-version: "Django>=5.0,<5.1"
python-version: 3.8
- django-version: "Django>=5.0,<5.1"
python-version: 3.9
- django-version: "Django==5.1b1"
python-version: 3.8
- django-version: "Django==5.1b1"
python-version: 3.9
steps:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dynamic = ["version"]
description = "Django app to store emails in db"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
requires-python = ">=3.9"
authors = [
{ name = "Konstantin Alekseev", email = "[email protected]" },
]
Expand All @@ -25,7 +25,6 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -69,7 +68,8 @@ packages = ["src/jemail"]

[tool.ruff]
src = ["src"]
target-version = "py38"
target-version = "py39"

[tool.ruff.lint]
select = [
'B',
Expand Down

0 comments on commit 41ccf60

Please sign in to comment.