From 6c680870ac51c8b8d6aec5d10365821e622a4326 Mon Sep 17 00:00:00 2001 From: Kwan-Yuet Ho Date: Wed, 22 Dec 2021 15:55:30 -0500 Subject: [PATCH 1/3] trying python 3.10 --- .circleci/config.yml | 6 ++++++ setup.py | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 104a9a4..01f06a1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -51,6 +51,11 @@ jobs: docker: - image: circleci/python:3.9 + py310: + <<: *shared + docker: + - image: circleci/python:3.10 + workflows: version: 2 build: @@ -59,3 +64,4 @@ workflows: - py37 - py38 - py39 + - py310 diff --git a/setup.py b/setup.py index 5d84ede..5cf9540 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def install_requirements(): setup(name='graphflow', - version="0.4.2", + version="0.5.0a1", description="Algorithms for Graph Flow Analysis", long_description="Numerical routines for analyzing data represented by graphs", classifiers=[ @@ -44,6 +44,7 @@ def install_requirements(): "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Fortran", "Programming Language :: Cython", "Programming Language :: C", From 1de5a7d78f3cdb847735d8d544c3c5e5b2f71c8d Mon Sep 17 00:00:00 2001 From: Kwan-Yuet Ho Date: Fri, 31 Dec 2021 17:58:19 -0500 Subject: [PATCH 2/3] back to 0.4 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5cf9540..8807a24 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def install_requirements(): setup(name='graphflow', - version="0.5.0a1", + version="0.4.3a1", description="Algorithms for Graph Flow Analysis", long_description="Numerical routines for analyzing data represented by graphs", classifiers=[ From 822ebd60eefe089bba7f5e4c792eec01c912d30f Mon Sep 17 00:00:00 2001 From: Kwan-Yuet Ho Date: Fri, 31 Dec 2021 18:05:32 -0500 Subject: [PATCH 3/3] 0.4.3aa2 after removing Fortran merge --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8807a24..c5e353b 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def install_requirements(): setup(name='graphflow', - version="0.4.3a1", + version="0.4.3a2", description="Algorithms for Graph Flow Analysis", long_description="Numerical routines for analyzing data represented by graphs", classifiers=[