From 1c0c96eef32854563fc4fb5754e0427aafa11ab4 Mon Sep 17 00:00:00 2001 From: Wouter Ellenbroek Date: Thu, 27 Oct 2022 14:24:43 +0200 Subject: [PATCH] Compatible with Python 3.11 --- perconet/__init__.py | 2 ++ pyproject.toml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/perconet/__init__.py b/perconet/__init__.py index a962db6..facd4e8 100644 --- a/perconet/__init__.py +++ b/perconet/__init__.py @@ -29,3 +29,5 @@ from perconet.loopfinder import LoopFinder __all__ = ["PeriodicNetwork", "LoopFinder"] + +__version__ = "0.2.0" diff --git a/pyproject.toml b/pyproject.toml index 3b82096..f4e518b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "perconet" -version = "0.1.2" +version = "0.2.0" description = "Analyze percolation properties of periodic networks" authors = ["Chiara Raffaelli, Wouter G. Ellenbroek"] homepage = "https://github.com/wouterel/perconet" @@ -13,7 +13,7 @@ classifiers = [ [tool.poetry.dependencies] -python = ">=3.7,<3.11" +python = ">=3.7,<3.12" numpy = "^1.20.3"