Add support for Python 3.13
This commit is contained in:
parent
d505d57fc4
commit
77d1b0009c
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["pypy3.10", "3.8", "3.9", "3.10", "3.11", "3.12"]
|
python-version: ["pypy3.10", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -24,7 +24,6 @@ jobs:
|
||||||
allow-prereleases: true
|
allow-prereleases: true
|
||||||
cache: pip
|
cache: pip
|
||||||
|
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install -U pip
|
python -m pip install -U pip
|
||||||
|
|
|
@ -35,6 +35,7 @@ Or from requirements.txt:
|
||||||
|
|
||||||
Note:
|
Note:
|
||||||
|
|
||||||
|
* pyLast 5.3+ supports Python 3.8-3.13.
|
||||||
* pyLast 5.2+ supports Python 3.8-3.12.
|
* pyLast 5.2+ supports Python 3.8-3.12.
|
||||||
* pyLast 5.1 supports Python 3.7-3.11.
|
* pyLast 5.1 supports Python 3.7-3.11.
|
||||||
* pyLast 5.0 supports Python 3.7-3.10.
|
* pyLast 5.0 supports Python 3.7-3.10.
|
||||||
|
|
|
@ -28,6 +28,7 @@ classifiers = [
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
"Programming Language :: Python :: 3.11",
|
"Programming Language :: Python :: 3.11",
|
||||||
"Programming Language :: Python :: 3.12",
|
"Programming Language :: Python :: 3.12",
|
||||||
|
"Programming Language :: Python :: 3.13",
|
||||||
"Programming Language :: Python :: Implementation :: CPython",
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
"Programming Language :: Python :: Implementation :: PyPy",
|
"Programming Language :: Python :: Implementation :: PyPy",
|
||||||
"Topic :: Internet",
|
"Topic :: Internet",
|
||||||
|
|
Loading…
Reference in a new issue