We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c192282 commit 3a0bb4aCopy full SHA for 3a0bb4a
2 files changed
pyproject.toml
@@ -28,7 +28,7 @@ dependencies = [
28
"numpy>=2.0",
29
"scipy>=1.13",
30
"pandas>=2.2",
31
- "xarray>=2024.6,<=2024.11",
+ "xarray>=2024.6",
32
"bottleneck>=1.4",
33
"coloredlogs",
34
"toml",
src/muse/readers/toml.py
@@ -754,4 +754,5 @@ def read_technodata(
754
755
year = sorted(set(time_framework).union(technologies.year.data.tolist()))
756
technologies = technologies.interp(year=year, method=interpolation_mode)
757
+ technologies = technologies.set_index(commodity="commodity") # See PR #638
758
return technologies
0 commit comments