Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v0.0.4 #355

Merged
merged 14 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ It is recommended to install poetry system-wide via the command below or
cd oemof-B3
3. Create virtual environment using conda:

conda env create environment.yml
conda env create -f environment.yml
4. Activate environment:

conda activate oemof-B3
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Reiner Lemoine Institut'

# The full version, including alpha/beta/rc tags
release = '0.0.4dev'
release = '0.0.5dev'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/docs_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Duplicates the docs requirements in pyproject.toml, but is necessary for readthedocs (rtd does not allow to poetry install -E docs).
sphinx
sphinx>=5.0.0
sphinx-rtd-theme>=0.5.1
sphinxcontrib_bibtex
2 changes: 1 addition & 1 deletion docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ It is recommended to install poetry system-wide via the command below or

::

conda env create environment.yml
conda env create -f environment.yml

4. Activate environment:

Expand Down
1 change: 1 addition & 0 deletions docs/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
What's new
~~~~~~~~~~

.. include:: whats_new/v0-0-4.rst
.. include:: whats_new/v0-0-3.rst
.. include:: whats_new/v0-0-2.rst
.. include:: whats_new/v0-0-1.rst
21 changes: 15 additions & 6 deletions docs/whats_new/v0-0-4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@ v0.0.4
======

# New features
* oemof-B3 now runs with latest release of oemoflex -> v0.0.3
* Hence it runs with oemof.tabular -> version v0.0.5

# Bug fixes

# Documentation

# Tests

# Other changes
* Wrong zenodo link to raw data has been fixed
* documentation build has been fixed (commit 07084684e8897ac34327a41bae990a3d881226d8)

# Contributors
- jnnr
- MaGering
- SabineHaas
- juliusmeier
- henhuy
- monika-o
- c-moeller
- Stefanie08
- chrwm
- khelfen
- mjazimm
23 changes: 23 additions & 0 deletions docs/whats_new/v0-0-5.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
v0.0.4
======

# New features

# Bug fixes

# Documentation

# Tests

# Contributors
- jnnr
- MaGering
- SabineHaas
- juliusmeier
- henhuy
- monika-o
- c-moeller
- Stefanie08
- chrwm
- khelfen
- mjazimm
28 changes: 14 additions & 14 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "oemof-B3"
version = "0.0.4dev"
version = "0.0.5dev"
description = "oemof-B3 - an open-source energy system model for Brandenburg/Berlin"
authors = [
"Jann Launer <[email protected]>",
Expand All @@ -26,7 +26,7 @@ pyyaml = ">=6.0"
dynaconf = "^3.1.7"
snakemake = ">=5"
oemoflex = {git = "https://github.com/rl-institut/oemoflex.git", rev = "0.0.3"}
Sphinx = {version = "^4.3.2", optional = true}
Sphinx = {version = ">=5.0", optional = true}
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
sphinxcontrib-bibtex = {version = "^2.4.1", optional = true}
docutils = "^0.17"
Expand Down
Loading