Skip to content

Commit

Permalink
updated to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nwlandry committed Dec 3, 2021
1 parent 1623d23 commit 6c2e084
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 22 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"
...
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions docs/source/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ License
-------
This project is licensed under the `BSD 3-Clause License
<https://github.com/ComplexGroupInteractions/xgi/blob/main/LICENSE.md>`__.
Note that this excludes any images/pictures/figures shown here or in the
documentation.

Contributing
------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Expand Down Expand Up @@ -31,15 +31,14 @@
'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."""

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("#")]
Expand Down
14 changes: 0 additions & 14 deletions xgi/metadata.py

This file was deleted.

0 comments on commit 6c2e084

Please sign in to comment.