Skip to content

Commit

Permalink
Use Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
bieniu committed Oct 8, 2024
1 parent be6a259 commit a8c8bc5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
python-version:
- "3.12"
- "3.13.0-beta.3"
- "3.13.0-rc.1"

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
warn_incomplete_stub = true
warn_redundant_casts = true
Expand All @@ -20,7 +20,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 +1 @@
aiohttp>=3.8.0
aiohttp>=3.9.4
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@
packages=["imgw_pib"],
package_data={"imgw_pib": ["py.typed"]},
python_requires=">=3.12",
install_requires=["aiohttp>=3.8.0"],
install_requires=["aiohttp>=3.9.4"],
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.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ skip_missing_interpreters = True
[gh-actions]
python =
3.12: py312, lint, typing, coverage
3.13.0-beta.3: py313
3.13: py313

[testenv]
commands =
Expand Down

0 comments on commit a8c8bc5

Please sign in to comment.