Skip to content

Commit

Permalink
Merge pull request #18 from stephenhky/py311
Browse files Browse the repository at this point in the history
Support for Python 3.11
  • Loading branch information
stephenhky authored Oct 29, 2022
2 parents a0648ae + 45fb852 commit 6debe07
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
docker:
- image: cimg/python:3.10

py311:
<<: *shared
docker:
- image: cimg/python:3.11

workflows:
version: 2
build:
Expand All @@ -65,3 +70,4 @@ workflows:
- py38
- py39
- py310
- py311
7 changes: 6 additions & 1 deletion doc/source/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ News
What's New
----------

Release 0.4.4 (December 31, 2021)
Release 0.4.5 (October 29, 2021)
---------------------------------

* Support for Python 3.11.

Release 0.4.4 (October 4, 2021)
---------------------------------

* No `numpy` and `Cython` dependencies before installation;
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def install_requirements():


setup(name='graphflow',
version="0.4.4",
version="0.4.5a1",
description="Algorithms for Graph Flow Analysis",
long_description="Numerical routines for analyzing data represented by graphs",
classifiers=[
Expand All @@ -28,6 +28,7 @@ def install_requirements():
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Cython",
"Programming Language :: C",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 6debe07

Please sign in to comment.