-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
MNT: drop 3.5 testing for 3.1 branch #12538
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
Changes from all commits
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 |
---|---|---|
|
@@ -75,13 +75,9 @@ matrix: | |
- RUN_PYTEST= | ||
- RUN_FLAKE8=1 | ||
- EXTRAREQS='-r requirements/testing/travis_flake8.txt' | ||
- python: 3.5 | ||
dist: trusty | ||
# pytest-cov>=2.3.1 due to https://github.com/pytest-dev/pytest-cov/issues/124. | ||
env: | ||
- PINNEDVERS='-c requirements/testing/travis35.txt' | ||
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. Also remove this file (or rename it to be the 3.6 pins). 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 were pinning numpy to 1.10 on the other builds? 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.
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. OK, see new file. I'm not sure if the other pinned reqs in travis35.txt were required to get it to run on 3.5 or if they were min deps we were wanting to test. I suspect the former, so I removed them. 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. pytest and sphinx are pinned as minimum deps also. 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. Why is that? Are we testing that devs can use old Sphinx and pytest? Or are those user facing pins? 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. I suppose so; those are the versions we specify in the docs. 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. Fixed, - wasn't sure if w need the pin on pytest-timeout so trying w/o |
||
- python: 3.6 | ||
env: | ||
- PINNEDVERS='-c requirements/testing/travis36minver.txt' | ||
- DELETE_FONT_CACHE=1 | ||
- EXTRAREQS='-r requirements/testing/travis36.txt' | ||
- python: 3.7 | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Extra pip requirements for the first travis python 3.6 build | ||
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. Needs to delete travis35.txt no? |
||
|
||
cycler==0.10 | ||
python-dateutil==2.1 | ||
numpy==1.11.0 | ||
pyparsing==2.0.1 |
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.
Let's move to a 3.7 docker build, and pin numpy 1.11 on the 3.6 build?
The CircleCI build does complement the coverage of the test suite.
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.
Absolutely, but does doing it on 3.6 and 3.7 buy us that much?
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.
test with oldest numpy (1.11) on 3.6, latest on 3.7.