Skip to content

Commit f332a2c

Browse files
authored
fix: support Py3.13 (#86)
* fix: support Py3.13 * loosen: adbnx-adapter
1 parent a195c2c commit f332a2c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,14 @@ workflows:
139139
- test:
140140
matrix:
141141
parameters:
142-
python_version: ["3.10", "3.11", "3.12"]
142+
python_version: ["3.10", "3.11", "3.12", "3.13"]
143143
- test-gpu:
144144
requires:
145145
- lint
146146
- test
147147
matrix:
148148
parameters:
149-
python_version: ["3.10", "3.11"] # "3.12" # TODO: Revisit 3.12
149+
python_version: ["3.10", "3.11"]
150150
filters:
151151
branches:
152152
only:

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,24 @@ authors = [
1515
{ name = "ArangoDB" },
1616
]
1717
license = { text = "Apache 2.0" }
18-
requires-python = ">=3.10"
18+
requires-python = ">=3.10,<3.14"
1919
classifiers = [
2020
"License :: OSI Approved :: Apache Software License",
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
26+
"Programming Language :: Python :: 3.13",
2627
"Programming Language :: Python :: 3 :: Only",
2728
"Intended Audience :: Developers",
2829
"Topic :: Software Development :: Libraries :: Python Modules",
2930
]
3031
dependencies = [
3132
"networkx>=3.0,<=3.5",
32-
"phenolrs~=0.5",
33+
"phenolrs==0.5.10",
3334
"python-arango~=8.1",
34-
"adbnx-adapter~=5.0.5"
35+
"adbnx-adapter~=5.0"
3536
]
3637

3738
[project.optional-dependencies]

0 commit comments

Comments
 (0)