From e3eb2543ee7128f10a279e3e0dde02cb10939c71 Mon Sep 17 00:00:00 2001 From: nwlandry Date: Sun, 12 Dec 2021 08:32:42 -0700 Subject: [PATCH] up-versioned --- CITATION.cff | 2 +- docs/source/about.rst | 6 +----- docs/source/conf.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 5317400f4..9a33333fb 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -11,5 +11,5 @@ cff-version: "1.1.0" license: "BSD-3" message: "If you use this software, please cite it using these metadata." title: XGI -version: "0.1.3" +version: "0.1.4" ... \ No newline at end of file diff --git a/docs/source/about.rst b/docs/source/about.rst index 6555df81e..13d907ddc 100644 --- a/docs/source/about.rst +++ b/docs/source/about.rst @@ -14,11 +14,7 @@ Install pip install xgi -``XGI`` was developed and tested for - -- Python 3.9 - -So far, the package's functionality was tested on Mac OS X and Windows 10. +``XGI`` was developed and tested for Python 3.7-3.10 on Mac OS, Windows, and Ubuntu. Dependencies ------------ diff --git a/docs/source/conf.py b/docs/source/conf.py index 3f563b115..0794544a8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ author = "Nicholas W. Landry and Leo Torres" # The full version, including alpha/beta/rc tags -release = "0.1.3" +release = "0.1.4" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 79fb68f74..6d7f732c9 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools import sys -__version__ = "0.1.3" +__version__ = "0.1.4" if sys.version_info < (3, 7): sys.exit("XGI requires Python 3.7 or later.")