-
Notifications
You must be signed in to change notification settings - Fork 283
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
Update test dependencies #2735
Merged
Merged
Update test dependencies #2735
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
76c3b8c
Bump test deps to hit py38 wheels
Xarthisius 91f9d80
Only antialias if overlap is significant^{TM}
Xarthisius 4b84d90
Generate new answers for enzo_p and plot_window
Xarthisius 4d7026b
Avoid updating brew to save some time
Xarthisius 7ac2111
Try to fix wheels cache on OSX
Xarthisius 8ec54a1
Bump mpl to get eps/ps speed-ups
Xarthisius 726e2b7
Specify format for Image.save
Xarthisius 97f96ed
Fix the test_config for a tiny terminal width
Xarthisius b99f8ef
Don't generate apidoc for deprecated analysis modules
Xarthisius 89a39b8
Remove a bazillion of MatplotlibDeprecationWarnings
Xarthisius f657f19
Bump answers for Travis
Xarthisius fddd88c
Disable Eagle test until yt-project/yt#2645 is merged
Xarthisius 24a7343
Avoid enumerate in Cython, define type of all vars. Fixes #2766
Xarthisius eb56722
__command_line needs to be set before importing yt.startup_tasks
Xarthisius 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
Submodule answer-store
updated
2 files
+ − | py37_phase_plots/py37_phase_plots | |
+ − | py37_profile_plots/py37_profile_plots |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# isort: skip-file | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. note that it'd be easier to manage if instead of this comment, the file was added to isort's ignore list in setup.cfg, but it shouldn't hold this PR back. @matthewturk , can you do it in #2756 ? |
||
import argparse | ||
import base64 | ||
import getpass | ||
|
@@ -28,7 +29,7 @@ | |
mylog, | ||
update_hg_or_git, | ||
) | ||
from yt.startup_tasks import parser, subparsers | ||
|
||
from yt.utilities.configure import set_config | ||
from yt.utilities.exceptions import ( | ||
YTCommandRequiresModule, | ||
|
@@ -38,7 +39,12 @@ | |
from yt.utilities.metadata import get_metadata | ||
from yt.visualization.plot_window import ProjectionPlot, SlicePlot | ||
|
||
ytcfg["yt", "__command_line"] = "True" | ||
# isort: off | ||
# This needs to be set before importing startup_tasks | ||
ytcfg["yt", "__command_line"] = "True" # isort: skip | ||
from yt.startup_tasks import parser, subparsers # isort: skip # noqa: E402 | ||
|
||
# isort: on | ||
|
||
# loading field plugins for backward compatibility, since this module | ||
# used to do "from yt.mods import *" | ||
|
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
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
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.
For now it's alright but maybe we should future proof this and use their bug fixes releases as soon as they come out ?