Skip to content

Commit

Permalink
Merge commit '69d92afb847d1abdcc8c7d2b1dc44661c0d9240b' into divide-u…
Browse files Browse the repository at this point in the history
…p-integration-tests
  • Loading branch information
peterdudfield committed Nov 19, 2024
2 parents f1ff28e + 69d92af commit 89877e5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 1.0.83
current_version = 1.0.85
message = Bump version: {current_version} → {new_version} [skip ci]

[bumpversion:file:pyproject.toml]
Expand Down
32 changes: 20 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,28 @@ build-backend = "setuptools.build_meta"

[project]
name = "quartz_solar_forecast"
version = "1.0.83"
version = "1.0.85"
description = "Open Source Solar Forecasting for a Site"
authors = [
{ name = "Peter Dudfield", email = "[email protected]" }
]
authors = [{ name = "Peter Dudfield", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.6"
license = { text = "MIT" }

dependencies = [
# Keep core dependencies that are needed for the app to run
"xarray==2022.12.0",
"pv-site-prediction==0.1.19",
"pydantic==2.6.2",
"huggingface_hub==0.17.3", # only for evaluation
"python-dotenv==1.0.1",
"openmeteo-requests==1.2.0",
"requests-cache==1.2.0",
"retry-requests==2.0.0",
"gdown==5.1.0",
"xgboost==2.0.3",
"plotly",
"typer",
"streamlit",
"async_timeout",
"uvicorn",
"fastapi",
"pydantic_settings",
"httpx"
"httpx",
]

[project.urls]
Expand All @@ -42,10 +36,24 @@ packages = { find = { include = ["*"] } }
package-data = { "quartz_solar_forecast" = ["*"] }

[project.optional-dependencies]
dev = []
dev = [
"streamlit",
"plotly",
"huggingface_hub==0.17.3",
"gdown==5.1.0",
"fastapi",
]

# additional vendor-specific dependencies for connecting to inverter APIs
inverters = ["ocf_vrmapi"] # victron
all = ["ocf_vrmapi"]
all = [
"ocf_vrmapi",
"streamlit",
"plotly",
"huggingface_hub==0.17.3",
"gdown==5.1.0",
"fastapi",
]

[tool.mypy]

Expand Down

0 comments on commit 89877e5

Please sign in to comment.