Skip to content

Commit

Permalink
fixed failed dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrokar1993 committed Dec 11, 2024
1 parent d76b639 commit 66eb846
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
Binary file modified dist/InRetEnsys-0.2a7-py3-none-any.whl
Binary file not shown.
2 changes: 1 addition & 1 deletion production/cbc/dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.13-slim

# Install cbc
RUN apt update
Expand Down
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ build-backend = "setuptools.build_meta"
[project]
name = "InRetEnsys"
version = "0.2a7"
dependencies = ['pydantic>=2.0', 'oemof.solph>=0.5.0', 'pyrsistent']
dependencies = [
'pydantic>=2.0',
'oemof.solph==0.5.2',
'pyrsistent'
]
authors=[
{name = "Andreas Lubojanski", email = "[email protected]"}
]
description = "InRetEnsys is a backend to build energysystems from abstract configcontainers for oemof.solph."
dynamic = ["readme"]
dynamic = ['readme']
license={text = "aGPL"}
requires-python=">=3.8"
classifiers=[
Expand All @@ -25,7 +29,7 @@ classifiers=[
]

[tool.setuptools.dynamic]
readme = {file = ["README.md"], content_type = "text/markdown"}
readme = {file = ['README.md'], content-type = "text/markdown"}

[tool.setuptools]
package-dir = {"" = "src"}
11 changes: 7 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
blinker
build
coverage
dill
dill==0.3.8
gurobipy
networkx
numpy
oemof.network
oemof.solph
oemof.tools
oemof==1.0
oemof.db==0.0.6
oemof.network==0.5.0
oemof.solph==0.5.2
oemof.thermal==0.0.6
oemof.tools==0.4.3
packaging
pandas
ply
Expand Down

0 comments on commit 66eb846

Please sign in to comment.