Skip to content

Commit

Permalink
Drop Python 3.8 and test 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ariostas authored Nov 11, 2024
1 parent a9eb24b commit 8b4c556
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.8'
- '3.12'
- '3.9'
- '3.13'
name: Check Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ lint.extend-ignore = [
"E501", # Line too long
"PT011", # Too broad of a match
]
target-version = "py37"
target-version = "py39"
lint.typing-modules = ["mypackage._compat.typing"]
src = ["src"]
lint.unfixable = [
Expand Down
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ classifiers =
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Typing :: Typed
keywords =
Expand All @@ -33,8 +34,7 @@ packages = find:
install_requires =
pyyaml
requests
importlib-resources>=1.3;python_version<"3.9"
python_requires = >=3.8
python_requires = >=3.9
package_dir =
=src
zip_safe = True
Expand All @@ -49,7 +49,7 @@ console_scripts =

[options.extras_require]
test =
pytest>=4.0.0
pytest>=6.0.0
pytest-cov

[tool:pytest]
Expand All @@ -58,7 +58,7 @@ norecursedirs = src

[mypy]
files = src
python_version = 3.7
python_version = 3.9
warn_unused_configs = True
disallow_any_generics = True
disallow_subclassing_any = True
Expand Down

0 comments on commit 8b4c556

Please sign in to comment.