Skip to content

Commit b0d8497

Browse files
authored
Add support for Python 3.13 (#17)
Bump GitHub Actions
1 parent 98b1e26 commit b0d8497

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/main.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ jobs:
4242
os: ["ubuntu-22.04"]
4343
include:
4444
- { python-version: "3.12", os: "ubuntu-latest" }
45+
- { python-version: "3.13", os: "ubuntu-latest" }
4546
steps:
46-
- uses: "actions/checkout@v3"
47+
- uses: "actions/checkout@v4"
4748
with:
4849
ref: ${{ inputs.tag || github.ref }}
49-
- uses: "actions/setup-python@v4"
50+
- uses: "actions/setup-python@v5"
5051
with:
5152
python-version: "${{ matrix.python-version }}"
5253
allow-prereleases: true
@@ -63,10 +64,10 @@ jobs:
6364
runs-on: "ubuntu-latest"
6465
needs: tests
6566
steps:
66-
- uses: "actions/checkout@v3"
67+
- uses: "actions/checkout@v4"
6768
with:
6869
ref: ${{ inputs.tag || github.ref }}
69-
- uses: "actions/setup-python@v4"
70+
- uses: "actions/setup-python@v5"
7071
with:
7172
python-version: "3.x"
7273
cache: "pip"
@@ -77,14 +78,14 @@ jobs:
7778
- name: "Run 'build'"
7879
run: "python -m build"
7980
- name: "Upload sdist artifact"
80-
uses: actions/upload-artifact@v3
81+
uses: actions/upload-artifact@v4
8182
with:
8283
name: sdist
8384
path: |
8485
dist/pyasn1*.tar.gz
8586
if-no-files-found: error
8687
- name: "Upload wheel artifact"
87-
uses: actions/upload-artifact@v3
88+
uses: actions/upload-artifact@v4
8889
with:
8990
name: wheel
9091
path: |

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ classifiers =
3333
Programming Language :: Python :: 3.10
3434
Programming Language :: Python :: 3.11
3535
Programming Language :: Python :: 3.12
36+
Programming Language :: Python :: 3.13
3637
Programming Language :: Python :: Implementation :: CPython
3738
Programming Language :: Python :: Implementation :: PyPy
3839
Topic :: Communications

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 3.5.0
33
envlist =
4-
py{38, 39, 310, 311, 312, py38, py39}
4+
py{38, 39, 310, 311, 312, 313, py38, py39}
55
cover, bandit, build
66
isolated_build = true
77
skip_missing_interpreters = true
@@ -44,5 +44,6 @@ python =
4444
3.10: py310, cover, build, bandit
4545
3.11: py311
4646
3.12: py312
47+
3.13: py313
4748
pypy-3.8: pypy38
4849
pypy-3.9: pypy39

0 commit comments

Comments
 (0)