Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ jobs:
- os: ubuntu-24.04
python-version: '3.11'
toxenv: mypy
- os: ubuntu-22.04
python-version: '3.9'
toxenv: py39
- os: ubuntu-22.04
python-version: '3.10'
toxenv: py310
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ classifiers = [
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -22,7 +21,7 @@ classifiers = [
]
license = "BSD-3-Clause"
license-files = ["LICENSE.rst"]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"requests >= 2.25.1",
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# tox configuration - if you change anything here, run this to verify: tox --recreate

[tox]
envlist = py{39,310,311,312,313,314},flake8,mypy
envlist = py{310,311,312,313,314},flake8,mypy

[testenv]
deps = pytest
Expand Down
Loading