From 09229752f89f8bcac4eb5f71c3801507b12285a3 Mon Sep 17 00:00:00 2001 From: Anthony Mahanna Date: Wed, 8 Jan 2025 18:52:27 -0500 Subject: [PATCH 1/2] new: support py313 --- .circleci/config.yml | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 27f4b958..41e8047d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -131,7 +131,7 @@ workflows: - test: matrix: parameters: - python_version: ["3.10", "3.11", "3.12.2"] + python_version: ["3.10", "3.11", "3.12", "3.13"] - test-gpu: requires: - lint diff --git a/pyproject.toml b/pyproject.toml index 35aa7763..1d950429 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ classifiers = [ "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", @@ -30,8 +31,8 @@ classifiers = [ dependencies = [ "networkx>=3.0,<=3.4", "phenolrs~=0.5", - "python-arango~=8.1", - "adbnx-adapter~=5.0.5" + "python-arango~=8", + "adbnx-adapter~=5" ] [project.optional-dependencies] From cf80229e3e00667957f4899bf091bedcf8dcf982 Mon Sep 17 00:00:00 2001 From: Anthony Mahanna Date: Wed, 8 Jan 2025 18:56:25 -0500 Subject: [PATCH 2/2] fix: pyproject --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1d950429..4565087f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,8 +31,8 @@ classifiers = [ dependencies = [ "networkx>=3.0,<=3.4", "phenolrs~=0.5", - "python-arango~=8", - "adbnx-adapter~=5" + "python-arango~=8.1", + "adbnx-adapter~=5.0" ] [project.optional-dependencies]