Skip to content

Commit 9c8da4a

Browse files
committed
Update tested python versions
Remove 3.7, add 3.13.
1 parent ed45e56 commit 9c8da4a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ jobs:
99
strategy:
1010
matrix:
1111
include:
12-
- python: 3.7
13-
toxenv: py37
1412
- python: 3.8
1513
toxenv: py38
1614
- python: 3.9
@@ -21,6 +19,8 @@ jobs:
2119
toxenv: py311
2220
- python: "3.12"
2321
toxenv: py312
22+
- python: "3.13"
23+
toxenv: py313
2424
name: ${{ matrix.toxenv }} on Python ${{ matrix.python }}
2525
steps:
2626
- uses: actions/checkout@v4

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@
5050
"Intended Audience :: Developers",
5151
"License :: OSI Approved :: MIT License",
5252
"Programming Language :: Python :: 3",
53-
"Programming Language :: Python :: 3.7",
5453
"Programming Language :: Python :: 3.8",
5554
"Programming Language :: Python :: 3.9",
5655
"Programming Language :: Python :: 3.10",
5756
"Programming Language :: Python :: 3.11",
5857
"Programming Language :: Python :: 3.12",
58+
"Programming Language :: Python :: 3.13",
5959
"Topic :: Internet :: WWW/HTTP",
6060
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
6161
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -67,7 +67,7 @@
6767
url="https://pastescript.readthedocs.io/",
6868
namespace_packages=['paste'],
6969
license='MIT',
70-
python_requires='>=3.7',
70+
python_requires='>=3.8',
7171
packages=find_packages(exclude=['tests','tests.*']),
7272
package_data={
7373
'paste.script': ['paster-templates/basic_package/setup.*',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{37,38,39,310,311,312}, pypy, pypy3
7+
envlist = py{38,39,310,311,312,313}, pypy, pypy3
88

99
[testenv]
1010
deps =

0 commit comments

Comments
 (0)