3 Commits

Author SHA1 Message Date
Normann
447f7d05be Update dependabot.yml to also include the feature branch 2025-03-23 22:48:02 +01:00
dependabot[bot]
c72051a08e Bump sphinx from 8.1.3 to 8.2.3 (#476)
Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 8.1.3 to 8.2.3.
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst)
- [Commits](https://github.com/sphinx-doc/sphinx/compare/v8.1.3...v8.2.3)

---
updated-dependencies:
- dependency-name: sphinx
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-23 22:14:51 +01:00
Normann
60bd320fbc Python req. to 3.11 for sphinx update (#487)
* Python req. to 3.11 for sphinx update

* Update pyproject.toml
2025-03-23 22:09:02 +01:00
4 changed files with 12 additions and 3 deletions

View File

@@ -5,7 +5,16 @@
version: 2 version: 2
updates: updates:
# Update dependencies on the main branch
- package-ecosystem: "pip" # See documentation for possible values - package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests directory: "/" # Location of package manifests
schedule: schedule:
interval: "weekly" interval: "weekly"
target-branch: "main" # Target the main branch
# Update dependencies on the feature/config-nested branch
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
target-branch: "feature/config-nested" # Target the specific feature branch

View File

@@ -10,7 +10,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).
## System requirements ## System requirements
- Python >= 3.10, < 3.13 - Python >= 3.11, < 3.13
- Architecture: amd64, aarch64 (armv8) - Architecture: amd64, aarch64 (armv8)
- OS: Linux, Windows, macOS - OS: Linux, Windows, macOS

View File

@@ -7,7 +7,7 @@ authors = [
description = "This project provides a comprehensive solution for simulating and optimizing an energy system based on renewable energy sources. With a focus on photovoltaic (PV) systems, battery storage (batteries), load management (consumer requirements), heat pumps, electric vehicles, and consideration of electricity price data, this system enables forecasting and optimization of energy flow and costs over a specified period." description = "This project provides a comprehensive solution for simulating and optimizing an energy system based on renewable energy sources. With a focus on photovoltaic (PV) systems, battery storage (batteries), load management (consumer requirements), heat pumps, electric vehicles, and consideration of electricity price data, this system enables forecasting and optimization of energy flow and costs over a specified period."
readme = "README.md" readme = "README.md"
license = {file = "LICENSE"} license = {file = "LICENSE"}
requires-python = ">=3.10" requires-python = ">=3.11"
classifiers = [ classifiers = [
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",

View File

@@ -2,7 +2,7 @@
gitpython==3.1.44 gitpython==3.1.44
linkify-it-py==2.0.3 linkify-it-py==2.0.3
myst-parser==4.0.1 myst-parser==4.0.1
sphinx==8.1.3 sphinx==8.2.3
sphinx_rtd_theme==3.0.2 sphinx_rtd_theme==3.0.2
sphinx-tabs==3.4.7 sphinx-tabs==3.4.7
pytest==8.3.5 pytest==8.3.5