Skip to content

Commit

Permalink
Merge branch 'release/v0.3.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
vogt31337 committed Jul 9, 2024
2 parents c33e315 + 84a4e53 commit e27082e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
16 changes: 9 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]" },
{ name = "Leon Thurner", email = "[email protected]" },
Expand Down Expand Up @@ -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",
Expand All @@ -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 = {}

0 comments on commit e27082e

Please sign in to comment.