-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix/eliminate warnings #990
Merged
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
c4f9365
Delete useless test
p-snft 860b742
Disuse network.Bus in warnings test
p-snft 55f3fdc
Disuse subclasses of oemof.network.Node
p-snft ecb8c25
Use pytest.approx(x) instead of int(round(x))
p-snft 3e02fc5
Embrace conformity
p-snft 962abb6
Use full_load_time_min instead of summed_min
p-snft aa43b30
Sort imports
p-snft 0156477
Delete unused import
p-snft 91b14c2
Merge branch 'dev' into fix/eliminate_warnings
p-snft b5b3a81
Merge branch 'dev' into fix/eliminate_warnings
p-snft 63e699e
Change deprecated API calls
p-snft fc403d3
Fix wrong replacement in TestsConstraint
p-snft 01ebeaa
Fix implicit time step inference
p-snft f677ad9
Adhere to Black
p-snft f9c79ab
Adhere to Black
p-snft 9fe9389
Merge branch 'dev' into fix/eliminate_warnings
p-snft 2129b0a
Delete warning about timeincrement in EnergySystem
p-snft 240746c
Fix include of example_genergic_invest
p-snft 442c3a6
Avoid DataFrame.groupby(*args, axis=1, **kwargs)
p-snft 1a681f0
Ignore ExperimentalFeatureWarning in pytest
p-snft b3ba6f2
Adhere to Black
p-snft 8ef4c4c
Include pytest.ini in MANIFEST
p-snft cfc6966
Revert "Ignore ExperimentalFeatureWarning in pytest"
p-snft 99385e6
Revert "Include pytest.ini in MANIFEST"
p-snft ceba43d
Delete tangling white space in docs
p-snft a849327
Merge branch 'dev' into fix/eliminate_warnings
p-snft 6cb4bbf
Test Future warning in Flow invenstment
p-snft 321a35a
Revert "Delete warning about timeincrement in EnergySystem"
p-snft 561688d
Tell about need for timeincrement in MP models
p-snft 5cb5b72
Merge branch 'dev' into fix/eliminate_warnings
jokochems File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
You are viewing a condensed version of this merge commit. You can view the full changes here.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see that you where looking to explicitly set
infer_last_interval
.I noticed that this test was somewhat outdated since I used the old
periods
definition (type dict) here which I fixed in #977 which I just merged.Another thing is that though it was syntactically correct with the list attribute as in the current dev branch, it would not have worked to set up a model this way. Since the test is only to demonstrate a warning that occurs before the model setup, I'm sorry that have not detected this. Anyways, as it is now, also the model build would work.
Concerning the (not so nice) inconsistency to be resolved some day, see #979.