Skip to content

Commit

Permalink
Update version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaraBuettner committed Dec 16, 2021
1 parent 4d6d43a commit 0775ab6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/egon/data/datasets/fill_etrago_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Egon_etrago_gen(Dataset):
def __init__(self, dependencies):
super().__init__(
name="etrago_generators",
version="0.0.2",
version="0.0.3",
dependencies=dependencies,
tasks=(fill_etrago_generators,),
)
Expand Down
2 changes: 1 addition & 1 deletion src/egon/data/datasets/heat_supply/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class HeatSupply(Dataset):
def __init__(self, dependencies):
super().__init__(
name="HeatSupply",
version="0.0.3",
version="0.0.4",
dependencies=dependencies,
tasks=(
create_tables,
Expand Down
4 changes: 2 additions & 2 deletions src/egon/data/datasets/power_plants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class PowerPlants(Dataset):
def __init__(self, dependencies):
super().__init__(
name="PowerPlants",
version="0.0.5",
version="0.0.6",
dependencies=dependencies,
tasks=(
create_tables,
Expand Down Expand Up @@ -750,4 +750,4 @@ def allocate_conventional_non_chp_power_plants():
geom=f"SRID=4326;POINT({row.geometry.x} {row.geometry.y})",
)
session.add(entry)
session.commit()
session.commit()

0 comments on commit 0775ab6

Please sign in to comment.