Skip to content

Commit 4b74017

Browse files
committed
Add Python 3.13 support
1 parent 496a468 commit 4b74017

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- "3.10"
2727
- "3.11"
2828
- "3.12"
29+
- "3.13"
2930

3031
steps:
3132
- name: Install OS dependencies

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Changes
66
3.6.2 (unreleased)
77
------------------
88

9-
- Nothing changed yet.
9+
- Add support for Python 3.13.
1010

1111

1212
3.6.1 (2024-02-26)

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ environment:
1010
- PYTHON: "C:\\Python310"
1111
- PYTHON: "C:\\Python311"
1212
- PYTHON: "C:\\Python312"
13+
- PYTHON: "C:\\Python313"
1314

1415
init:
1516
- "echo %PYTHON%"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def build_images(doctests=()):
8282
'Programming Language :: Python :: 3.10',
8383
'Programming Language :: Python :: 3.11',
8484
'Programming Language :: Python :: 3.12',
85+
'Programming Language :: Python :: 3.13',
8586
],
8687
keywords='object graph visualization graphviz garbage collection',
8788
py_modules=['objgraph'],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37, py38, py39, py310, py311, py312
2+
envlist = py37, py38, py39, py310, py311, py312, py313
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)