-
Notifications
You must be signed in to change notification settings - Fork 279
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
Add Python 3.7 and Python 3.8 to CI test jobs #2450
Changes from all commits
46fbf21
efe9ab6
85902e7
29e44b4
969f512
39126ba
c6be810
247c598
75c6cb4
0284d5e
685589d
7ddc77c
4e1fa82
8da3bc8
dbc1aed
7c2ed91
d37c4e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ glueviz==0.13.3; python_version >= '3.0' | |
h5py==2.8.0 | ||
ipython==7.1.1; python_version >= '3.0' | ||
ipython==5.8.0; python_version < '3.0' | ||
matplotlib==3.0.3; python_version >= '3.0' | ||
matplotlib==3.1.3; python_version >= '3.0' | ||
matplotlib==2.2.3; python_version < '3.0' | ||
mock==2.0.0; python_version < '3.0' | ||
nose-timer==0.7.3 | ||
|
@@ -16,12 +16,14 @@ pandas==0.23.4 | |
pytest~=5.2; python_version >= '3.0' | ||
pytest~=4.6; python_version < '3.0' | ||
requests==2.20.0 | ||
scipy==1.1.0 | ||
scipy==1.1.0; python_version < '3.0' | ||
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. Since Python 2 is not supported, is there a reason to keep this? 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. We're still running tests for py2.7, just not on Travis. It hasn't been dropped yet. |
||
scipy==1.3.3; python_version >= '3.0' | ||
sympy==1.5 | ||
pyqt5==5.11.3; python_version >= '3.0' | ||
thingking==1.0.2; python_version < '3.0' | ||
pint==0.8.1 | ||
netCDF4==1.4.2 | ||
netCDF4==1.4.2; python_version < '3.0' | ||
netCDF4==1.5.3; python_version >= '3.0' | ||
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. Same as above, I would advocate to remote the |
||
libconf==1.0.1 | ||
cartopy==0.17.0 | ||
pyaml==17.10.0 | ||
|
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.
Here and below, what is the reason to use
Lint
instead oflint
?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 suppose it could be either, but basically what seemed to be happening is that while previously Travis had been capitalizing the stage names (i.e.,
lint
becameLint
) for some reason it no longer was in our jobs. And, because OS X runs bash 3.2, we couldn't use the${VAR^^}
or${VAR,,}
construction to change the case as a whole.So, this is in there in case it switches back. It could use either one, but we figured that the least invasive one would be to assume the old behavior would return some day.