Closed gidden closed 3 years ago
After updating to 0.11.0, I observe the following behavior.
0.11.0
Using the sr15 world dataset, and applying the following script
import pyam print(pyam.__version__) print(pyam.__file__) sr1p5 = pyam.IamDataFrame('./iamc15_scenario_data_world_r2.0.xlsx') variable = 'Emissions|CO2' print(sr1p5.filter(variable=variable).variables())
Results in an erroneous result
0 AR5 climate diagnostics|Concentration|CO2|FAIR...
This is new as of 0.11, and I confirmed that 0.10 behaves as expected.
0.11
0.10
To fix this, I needed to update pandas to 1.0+. #531 is our attempt to catch this in the future by explicitly testing minimum dependencies.
1.0
@danielhuppmann FYI - this issue is for posterity in case others run into a similar problem. Closing as addressed.
After updating to
0.11.0
, I observe the following behavior.Using the sr15 world dataset, and applying the following script
Results in an erroneous result
This is new as of
0.11
, and I confirmed that0.10
behaves as expected.To fix this, I needed to update pandas to
1.0
+. #531 is our attempt to catch this in the future by explicitly testing minimum dependencies.