Skip to content

Commit

Permalink
chore: 🔖 Update dependencies and version number (#1175)
Browse files Browse the repository at this point in the history
* build: 🔖 Set `post` release

* chore: 🚨 Refactor pyproject.toml exclude and networkx dependencies
  • Loading branch information
Anselmoo authored Feb 15, 2024
1 parent d8e0432 commit 58bbd16
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 22 deletions.
26 changes: 5 additions & 21 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "SpectraFit"
version = "1.0.0"
version = "1.0.0.post0"
description = "Fast fitting of 2D- and 3D-Spectra with established routines"
readme = "README.md"
authors = ["Anselm Hahn <[email protected]>"]
Expand Down Expand Up @@ -39,12 +39,7 @@ include = [
{ path = "examples/", format = "sdist" },
{ path = "spectrafit/plugins/img/SpectraFit.png", format = "sdist" },
]
exclude = [
"docs/",
"tools/",
"spectrafit/test/",
"spectrafit/**/test/",
]
exclude = ["docs/", "tools/", "spectrafit/test/", "spectrafit/**/test/"]


[tool.poetry.dependencies]
Expand All @@ -69,9 +64,7 @@ plotly = { version = "^5.14.0", optional = true }
itables = { version = "^1.3.4", optional = true }
kaleido = { version = "0.2.1", optional = true }
dtale = { version = "^3.9.0", optional = true }
networkx = { extras = [
"all",
], version = "^3.0", optional = true }
networkx = { extras = ["all"], version = "^3.0", optional = true }
pydot = { version = "^1.4.2", optional = true }
jupyter-dash = { version = "^0.4.2", optional = true }
ipywidgets = { version = "^8.0.4", optional = true }
Expand Down Expand Up @@ -111,9 +104,7 @@ types-setuptools = ">=68.0.0.3,<70.0.0.0"

[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.4.0"
mkdocstrings = { extras = [
"python",
], version = ">=0.19,<0.23" }
mkdocstrings = { extras = ["python"], version = ">=0.19,<0.23" }
mkdocs-literate-nav = ">=0.4.1,<0.7.0"
mkdocs-section-index = "^0.3.4"
mkdocs-autorefs = "^0.5.0"
Expand Down Expand Up @@ -141,14 +132,7 @@ spectrafit-pptx-converter = "spectrafit.plugins.pptx_converter:command_line_runn


[tool.poetry.extras]
jupyter = [
"jupyterlab",
"plotly",
"itables",
"kaleido",
"dtale",
"python-pptx",
]
jupyter = ["jupyterlab", "plotly", "itables", "kaleido", "dtale", "python-pptx"]
jupyter-dash = [
"jupyter-dash",
"ipywidgets",
Expand Down
2 changes: 1 addition & 1 deletion spectrafit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
SpectraFit uses [Semantic Versioning](https://semver.org/).
"""

__version__ = "1.0.0"
__version__ = "1.0.0.post0"

0 comments on commit 58bbd16

Please sign in to comment.