Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Python 3.13, drop Python 3.11 #428

Merged
merged 1 commit into from
Oct 12, 2024
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: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ jobs:
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13.0-rc.2"
- "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 @@ -2,7 +2,7 @@
asyncio_mode = "strict"

[tool.mypy]
python_version = "3.12"
python_version = "3.13"
show_error_codes = true
follow_imports = "silent"
ignore_missing_imports = true
Expand All @@ -22,7 +22,7 @@ warn_unused_ignores = true
warn_unreachable = true

[tool.ruff]
target-version = "py312"
target-version = "py313"

lint.select = ["ALL"]

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
aiohttp>=3.7.0
aiohttp>=3.9.4
dacite>=1.7.0
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

PROJECT_DIR = Path(__file__).parent.resolve()
README_FILE = PROJECT_DIR / "README.md"
VERSION = "4.0.0"
VERSION = "5.0.0"

setup(
name="gios",
Expand All @@ -20,16 +20,16 @@
license="Apache-2.0 License",
packages=["gios"],
package_data={"gios": ["py.typed"]},
python_requires=">=3.11",
install_requires=["aiohttp>=3.7.0", "dacite>=1.7.0"],
python_requires=">=3.12",
install_requires=["aiohttp>=3.9.4", "dacite>=1.7.0"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
],
Expand Down
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[tox]
envlist = py311, py312, py313, lint, typing, coverage
envlist = py312, py313, lint, typing, coverage
skip_missing_interpreters = True

[gh-actions]
python =
3.11: py311, lint, typing, coverage
3.12: py312
3.13.0-rc.2: py313
3.12: py312, lint, typing, coverage
3.13: py313

[testenv]
commands =
Expand Down