Skip to content

Commit 7465dbb

Browse files
committed
Bump and actualize python versions
1 parent a155a74 commit 7465dbb

File tree

4 files changed

+25
-15
lines changed

4 files changed

+25
-15
lines changed

.github/workflows/tests.yml

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ jobs:
4444

4545
matrix:
4646
include:
47-
- python-versions: 3.7
48-
toxenv: py37
49-
os: ubuntu-latest
5047
- python-versions: 3.8
5148
toxenv: py38
5249
os: ubuntu-latest
@@ -57,11 +54,14 @@ jobs:
5754
toxenv: py310
5855
os: ubuntu-latest
5956
- python-versions: "3.11"
60-
toxenv: py310
57+
toxenv: py311
58+
os: ubuntu-latest
59+
- python-versions: "3.12"
60+
toxenv: py312
61+
os: ubuntu-latest
62+
- python-versions: "3.13.0-rc.3"
63+
toxenv: py313
6164
os: ubuntu-latest
62-
- python-versions: 3.7
63-
toxenv: py37
64-
os: macos-latest
6565
- python-versions: 3.8
6666
toxenv: py38
6767
os: macos-latest
@@ -74,9 +74,12 @@ jobs:
7474
- python-versions: "3.11"
7575
toxenv: py311
7676
os: macos-latest
77-
- python-versions: 3.7
78-
toxenv: py37
79-
os: windows-latest
77+
- python-versions: "3.12"
78+
toxenv: py312
79+
os: macos-latest
80+
- python-versions: "3.13.0-rc.3"
81+
toxenv: py313
82+
os: macos-latest
8083
- python-versions: 3.8
8184
toxenv: py38
8285
os: windows-latest
@@ -89,15 +92,21 @@ jobs:
8992
- python-versions: "3.11"
9093
toxenv: py311
9194
os: windows-latest
95+
- python-versions: "3.12"
96+
toxenv: py312
97+
os: windows-latest
98+
- python-versions: "3.13.0-rc.3"
99+
toxenv: py313
100+
os: windows-latest
92101

93102
needs: lint
94103
runs-on: ${{ matrix.os }}
95104

96105
steps:
97-
- uses: actions/checkout@v2
106+
- uses: actions/checkout@v4
98107

99108
- name: Setting up python ${{ matrix.python-versions }}
100-
uses: actions/setup-python@v2
109+
uses: actions/setup-python@v5
101110
with:
102111
python-version: ${{ matrix.python-versions }}
103112
architecture: x64

aiofile/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
team_email = "me@mosquito.su"
1111

12-
version_info = (3, 8, 8)
12+
version_info = (3, 8, 9)
1313

1414
__author__ = ", ".join("{} <{}>".format(*info) for info in author_info)
1515
__version__ = ".".join(map(str, version_info))

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,12 @@
3838
"Operating System :: MacOS :: MacOS X",
3939
"Programming Language :: Python",
4040
"Programming Language :: Python :: 3 :: Only",
41-
"Programming Language :: Python :: 3.7",
4241
"Programming Language :: Python :: 3.8",
4342
"Programming Language :: Python :: 3.9",
4443
"Programming Language :: Python :: 3.10",
4544
"Programming Language :: Python :: 3.11",
45+
"Programming Language :: Python :: 3.12",
46+
"Programming Language :: Python :: 3.13",
4647
"Programming Language :: Python :: Implementation :: CPython",
4748
"Topic :: Software Development :: Libraries",
4849
"Topic :: System",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py3{7-11},readme
2+
envlist = lint,py3{8-13},readme
33

44
[testenv]
55
passenv = COVERALLS_*, GITHUB_*

0 commit comments

Comments
 (0)