From 1985879b7b9ba4abacffa944942e2c22e9980540 Mon Sep 17 00:00:00 2001 From: mvogt Date: Tue, 9 Jul 2024 12:01:45 +0200 Subject: [PATCH 1/2] fixed versioning and packaging, which resulted in an uninstallable/empty pandahub package --- pyproject.toml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 71ff460..de71a1b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,10 +45,13 @@ dependencies = [ "pymongo", "pydantic", "simplejson", - "requests", + "requests<2.28.0", "python-dotenv", "pymongoarrow", - "blosc" + "blosc", + "motor<3.0.0", + "hypothesis-graphql<0.10.0", + "attrs>=22.2.0" ] keywords = [ "network", "analysis", "optimization", "automation", "grid", "energy", "engineering", "simulation", @@ -68,9 +71,8 @@ docs = ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex", "sphin test = ["pytest", "pytest-xdist", "nbmake", "simbench", "line_profiler"] all = [ "numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex", "sphinx-pyproject", - "pytest", "pytest-xdist", "nbmake", "simbench", "line_profiler", + "pytest<8.0.0", "pytest-xdist", "nbmake", "simbench", "line_profiler", ] -[tool.setuptools.packages.find] -where = ["pandahub"] -include = ["*"] +[tool.setuptools.packages] +find = {} From 84a4e53445971657d7c1377115496312b53ab243 Mon Sep 17 00:00:00 2001 From: mvogt Date: Tue, 9 Jul 2024 12:03:47 +0200 Subject: [PATCH 2/2] bump version --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dea032e..aa2135f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [0.3.5] + + - Fixed version and repaired pyproject.toml + ## [0.2.4] - BREAKING drops index argument from create_variant() function diff --git a/pyproject.toml b/pyproject.toml index de71a1b..3b4c4ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pandahub" -version = "0.3.4" # File format version '__format_version__' is tracked in __init__.py +version = "0.3.5" # File format version '__format_version__' is tracked in __init__.py authors=[ { name = "Jan Ulffers", email = "jan.ulffers@iee.fraunhofer.de" }, { name = "Leon Thurner", email = "leon.thurner@retoflow.de" },