From 6c2e08455628a73eca3627ef36b5f4811bc32640 Mon Sep 17 00:00:00 2001 From: nwlandry Date: Fri, 3 Dec 2021 06:40:52 -0700 Subject: [PATCH] updated to 0.1.2 --- CITATION.cff | 2 +- CONTRIBUTING.md | 2 +- docs/source/about.rst | 2 -- docs/source/conf.py | 2 +- setup.py | 5 ++--- xgi/metadata.py | 14 -------------- 6 files changed, 5 insertions(+), 22 deletions(-) delete mode 100644 xgi/metadata.py diff --git a/CITATION.cff b/CITATION.cff index 72da9c8b0..6c512f4c4 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.1" +version: "0.1.2" ... \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1eee36313..455940df2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ Please note we have a [code of conduct](/CODE_OF_CONDUCT.md), please follow it i build. 2. Update README.md and CHANGELOG.md with details of changes to the interface, this includes new environment variables, exposed ports, useful file locations and container parameters. -3. Increase the version number in [xgi/metadata.py](/xgi/metadata.py) and the README.md to the new version that this +3. Increase the version number in [setup.py](setup.py), [conf.py](docs/source/conf.py), and [CITATION.cff](CITATION.cff) to the new version that this Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/). 4. Please read the documentation part on [testing](TODO). Make sure [pytest](https://docs.pytest.org/en/latest/) is installed. Run ``make test`` to run all automated tests. Post the output as a comment in your Pull Request. 5. You may merge the Pull Request in once you have the sign-off of one other developer, or if you diff --git a/docs/source/about.rst b/docs/source/about.rst index 2a884db18..064304bb1 100644 --- a/docs/source/about.rst +++ b/docs/source/about.rst @@ -35,8 +35,6 @@ License ------- This project is licensed under the `BSD 3-Clause License `__. -Note that this excludes any images/pictures/figures shown here or in the -documentation. Contributing ------------ diff --git a/docs/source/conf.py b/docs/source/conf.py index 898fccbf5..2668606cb 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.1" +release = "0.1.2" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 901c3694d..ac3f1fd5e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools import sys -__version__ = "0.1.1" +__version__ = "0.1.2" if sys.version_info < (3, 7): sys.exit("XGI requires Python 3.7 or later.") @@ -31,7 +31,7 @@ 'Source': "https://github.com/ComplexGroupInteractions/xgi", 'PyPI': "https://pypi.org/project/xgi/", 'GitHub Discussions': "https://github.com/ComplexGroupInteractions/xgi/discussions" - }, + } description = """XGI is a Python library for the representation and analysis of complex systems with group (higher-order) interactions.""" @@ -39,7 +39,6 @@ with open("long_description.rst") as file: long_description = file.read() - def parse_requirements_file(filename): with open(filename) as fid: requires = [l.strip() for l in fid.readlines() if not l.startswith("#")] diff --git a/xgi/metadata.py b/xgi/metadata.py deleted file mode 100644 index 9f0bc31f8..000000000 --- a/xgi/metadata.py +++ /dev/null @@ -1,14 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Contains information about this package. -""" - -__version__ = "0.1.1" - -__author__ = "Nicholas W. Landry and Leo Torres" -__copyright__ = "Copyright 2021-2022, " + __author__ -__credits__ = [__author__] -__license__ = "BSD 3-Clause" -__maintainer__ = __author__ -__email__ = "nicholas.landry@colorado.edu" -__status__ = "Development"