Skip to content

Commit

Permalink
start new version
Browse files Browse the repository at this point in the history
  • Loading branch information
tsbinns committed May 9, 2023
1 parent 095591c commit 167a5f5
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 12 deletions.
4 changes: 1 addition & 3 deletions docs/source/_static/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
numpy
scipy
numba
mne
pqdm
matplotlib
pqdm
5 changes: 5 additions & 0 deletions docs/source/_static/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@
"name": "0.0.1dev",
"version": "main",
"url": "https://pyparrm.readthedocs.io/en/main/"
},
{
"name": "1.0.0",
"version": "main",
"url": "https://pyparrm.readthedocs.io/en/1.0.0/"
}
]
5 changes: 2 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
from pyparrm._utils._docs import linkcode_resolve


project = "pyparrm"
project = "PyPARRM"
copyright = "2023, Thomas Samuel Binns"
author = "Thomas Samuel Binns"
release = "dev"
release = "1.0.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down Expand Up @@ -83,7 +83,6 @@
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"numpy": ("https://numpy.org/doc/stable", None),
"numba": ("https://numba.readthedocs.io/en/latest", None),
}


Expand Down
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "pyparrm"
version = "0.0.1dev"
version = "1.0.0"
authors = [
{ name="Thomas Samuel Binns", email="t.s.binns@outlook.com" }
]
Expand All @@ -18,7 +18,10 @@ classifiers = [
]

dependencies = [
"numpy"
"numpy",
"scipy",
"matplotlib",
"pqdm"
]

[project.optional-dependencies]
Expand All @@ -39,5 +42,5 @@ dev = [
]

[project.urls]
"Homepage" = "https://github.com/icneuromodulation/PyPARRM"
"Bug Tracker" = "https://github.com/icneuromodulation/PyPARRM/issues"
"Homepage" = "https://github.com/neuromodulation/PyPARRM"
"Bug Tracker" = "https://github.com/neuromodulation/PyPARRM/issues"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="pyparrm",
version="0.0.1dev",
version="1.0.0",
package_dir={"": "src/"},
packages=["pyparrm", "pyparrm._utils"],
)
2 changes: 1 addition & 1 deletion src/pyparrm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.0.1dev"
__version__ = "1.0.0"

from .parrm import PARRM

0 comments on commit 167a5f5

Please sign in to comment.