Skip to content

Commit

Permalink
modified docker compose file for production
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Lubojanski <[email protected]>
  • Loading branch information
pyrokar1993 committed Feb 1, 2024
1 parent fafbe8d commit d76b639
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
Binary file modified dist/InRetEnsys-0.2a7-py3-none-any.whl
Binary file not shown.
1 change: 0 additions & 1 deletion src/InRetEnsys/common/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from typing import Dict

import pydantic
from oemof import solph
from pydantic import BaseModel, Extra, model_validator

Expand Down
2 changes: 1 addition & 1 deletion src/InRetEnsys/components/model.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from typing import Union

from pydantic import validator, Field
from InRetEnsys import InRetEnsysConfigContainer, InRetEnsysEnergysystem
from InRetEnsys.types import Solver
from pydantic import validator, Field


## Container which contains the params for an InRetEnsys-Model
Expand Down
5 changes: 2 additions & 3 deletions src/InRetEnsys/components/sink.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from oemof import solph
from pydantic import Field

from InRetEnsys.common.config import InRetEnsysConfigContainer
from InRetEnsys.components.flow import InRetEnsysFlow
from oemof import solph
from pydantic import Field


## Container which contains the params for an InRetEnsys-Sink-Object
Expand Down
4 changes: 2 additions & 2 deletions src/InRetEnsys/components/source.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from oemof import solph
from pydantic import Field
from InRetEnsys.common.config import InRetEnsysConfigContainer
from InRetEnsys.components.flow import InRetEnsysFlow
from oemof import solph
from pydantic import Field


## Container which contains the params for an InRetEnsys-Source-Object
Expand Down
3 changes: 2 additions & 1 deletion src/InRetEnsys/tests/test_components.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import unittest

from oemof import solph
from InRetEnsys import *
from InRetEnsys.components import *
from InRetEnsys.types import Frequencies
from oemof import solph


class components(unittest.TestCase):

Expand Down

0 comments on commit d76b639

Please sign in to comment.