Skip to content

Commit 7b26e65

Browse files
authored
Add python 3.13 support in build files (#161)
1 parent 92cf202 commit 7b26e65

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ classifiers = [
4545
"Programming Language :: Python :: 3.10",
4646
"Programming Language :: Python :: 3.11",
4747
"Programming Language :: Python :: 3.12",
48+
"Programming Language :: Python :: 3.13",
4849
]
4950

5051
# Python dependencies required for use.
@@ -73,7 +74,7 @@ python_classes = ["Test*"]
7374
python_functions = ["test_*"]
7475

7576
[tool.black]
76-
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
77+
target-version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313']
7778
include = '\.pyi?$'
7879
extend-exclude = '''
7980
/(

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,14 +184,15 @@ def run(self):
184184
"cmake>=3.18",
185185
],
186186
classifiers=[
187-
"Development Status :: 3 - Alpha",
187+
"Development Status :: 4 - Beta",
188188
"Intended Audience :: Developers",
189189
"License :: OSI Approved :: BSD License",
190190
"Operating System :: OS Independent",
191191
"Programming Language :: Python :: 3",
192192
"Programming Language :: Python :: 3.10",
193193
"Programming Language :: Python :: 3.11",
194194
"Programming Language :: Python :: 3.12",
195+
"Programming Language :: Python :: 3.13",
195196
"Programming Language :: C++",
196197
"Topic :: Scientific/Engineering :: Artificial Intelligence",
197198
],

0 commit comments

Comments
 (0)