Skip to content

Commit

Permalink
Merge pull request #120 from oemof/features/solph_version
Browse files Browse the repository at this point in the history
Setup with `oemof.solph` dev-branch
  • Loading branch information
nailend authored Aug 14, 2023
2 parents 8d26a48 + 89e2ae5 commit 0fd834d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def read(*names, **kwargs):
"datapackage==1.5.1",
"tableschema==1.7.4", # newer versions (v1.8.0 and up) fail!
# "oemof.solph==0.5.1",
"oemof.solph @ git+https://github.com/oemof/oemof-solph.git@v0.5.1.dev2",
"oemof.solph @ git+https://github.com/oemof/oemof-solph.git@dev",
"pandas>=0.22",
"paramiko",
"toml",
Expand Down
2 changes: 1 addition & 1 deletion src/oemof/tabular/tools/postprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def component_results(es, results, select="sequences"):
setattr(es, "typemap", facades.TYPEMAP)

for k, v in es.typemap.items():
if type(k) == str:
if isinstance(k, str):
if select == "sequences":
_seq_by_type = [
views.node(results, n, multiindex=True).get("sequences")
Expand Down

0 comments on commit 0fd834d

Please sign in to comment.