Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
5b128e8c
Commit
5b128e8c
authored
Jul 23, 2019
by
mergify[bot]
Committed by
GitHub
Jul 23, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1803 from benoit-pierre/fix_travis_py34
tests: fix `test_pip_upgrade_from_source` on Python 3.4
parents
38b9010b
d694f544
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
setuptools/tests/test_virtualenv.py
setuptools/tests/test_virtualenv.py
+6
-1
No files found.
setuptools/tests/test_virtualenv.py
View file @
5b128e8c
...
...
@@ -8,6 +8,8 @@ from pytest_fixture_config import yield_requires_config
import
pytest_virtualenv
from
setuptools.extern
import
six
from
.textwrap
import
DALS
from
.test_easy_install
import
make_nspkg_sdist
...
...
@@ -75,9 +77,12 @@ def _get_pip_versions():
'pip==10.0.1'
,
'pip==18.1'
,
'pip==19.0.1'
,
'https://github.com/pypa/pip/archive/master.zip'
,
]
# Pip's master dropped support for 3.4.
if
not
six
.
PY34
:
network_versions
.
append
(
'https://github.com/pypa/pip/archive/master.zip'
)
versions
=
[
None
]
+
[
pytest
.
param
(
v
,
**
({}
if
network
else
{
'marks'
:
pytest
.
mark
.
skip
}))
for
v
in
network_versions
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment