Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,14 @@ workflows:
- test:
matrix:
parameters:
python_version: ["3.10", "3.11", "3.12"]
python_version: ["3.10", "3.11", "3.12", "3.13"]
- test-gpu:
requires:
- lint
- test
matrix:
parameters:
python_version: ["3.10", "3.11"] # "3.12" # TODO: Revisit 3.12
python_version: ["3.10", "3.11"]
filters:
branches:
only:
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,24 @@ authors = [
{ name = "ArangoDB" },
]
license = { text = "Apache 2.0" }
requires-python = ">=3.10"
requires-python = ">=3.10,<3.14"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"networkx>=3.0,<=3.5",
"phenolrs~=0.5",
"phenolrs==0.5.10",
"python-arango~=8.1",
"adbnx-adapter~=5.0.5"
"adbnx-adapter~=5.0"
]

[project.optional-dependencies]
Expand Down