Skip to content

Commit

Permalink
Merge pull request #760 from oemof/fix/exclude-problematic-pyomo-version
Browse files Browse the repository at this point in the history
Exclude pyomo version that causes a too long computing time
  • Loading branch information
uvchik authored May 17, 2021
2 parents 8efb208 + d4eb970 commit 20227e2
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 52 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.1"
__version__ = "0.4.2"
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ These are new features and improvements of note in each release
:local:
:backlinks: top

.. include:: whatsnew/v0-4-2.rst
.. include:: whatsnew/v0-4-1.rst
.. include:: whatsnew/v0-4-0.rst
.. include:: whatsnew/v0-3-2.rst
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
year = '2014-2020'
author = 'oemof-developer-group'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.4.1'
version = release = '0.4.2'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
49 changes: 2 additions & 47 deletions docs/whatsnew/v0-4-2.rst
Original file line number Diff line number Diff line change
@@ -1,49 +1,4 @@
v0.4.2 (???, 2020)
v0.4.2 (May, 11, 2021)
-----------------------


API changes
^^^^^^^^^^^^^^^^^^^^

* something


New features
^^^^^^^^^^^^^^^^^^^^

* something

New components/constraints
^^^^^^^^^^^^^^^^^^^^^^^^^^

* something

Documentation
^^^^^^^^^^^^^^^^^^^^

* something

Bug fixes
^^^^^^^^^^^^^^^^^^^^

* something

Known issues
^^^^^^^^^^^^^^^^^^^^

* something

Testing
^^^^^^^^^^^^^^^^^^^^

* something

Other changes
^^^^^^^^^^^^^^^^^^^^

* something

Contributors
^^^^^^^^^^^^^^^^^^^^

* something
* Exclude Pyomo version 5.7.3, because this version causes an unusual high computing time to create a model.
49 changes: 49 additions & 0 deletions docs/whatsnew/v0-4-3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
v0.4.2 (???, 2020)
-----------------------


API changes
^^^^^^^^^^^^^^^^^^^^

* something


New features
^^^^^^^^^^^^^^^^^^^^

* something

New components/constraints
^^^^^^^^^^^^^^^^^^^^^^^^^^

* something

Documentation
^^^^^^^^^^^^^^^^^^^^

* something

Bug fixes
^^^^^^^^^^^^^^^^^^^^

* something

Known issues
^^^^^^^^^^^^^^^^^^^^

* something

Testing
^^^^^^^^^^^^^^^^^^^^

* something

Other changes
^^^^^^^^^^^^^^^^^^^^

* something

Contributors
^^^^^^^^^^^^^^^^^^^^

* something
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def read(*names, **kwargs):

setup(
name="oemof.solph",
version="0.4.1",
version="0.4.2",
license="MIT",
description=(
"A model generator for energy system modelling and optimisation."
Expand Down Expand Up @@ -86,7 +86,7 @@ def read(*names, **kwargs):
"dill",
"numpy",
"pandas",
"pyomo >= 5.7.0, < 6.0",
"pyomo >= 5.7.0, !=5.7.3",
"networkx",
"oemof.tools",
"oemof.network",
Expand Down
2 changes: 1 addition & 1 deletion src/oemof/solph/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.1"
__version__ = "0.4.2"

from . import constraints # noqa: F401
from . import custom # noqa: F401
Expand Down

0 comments on commit 20227e2

Please sign in to comment.