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
ef583b28
Commit
ef583b28
authored
Dec 01, 2016
by
idle sign
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'remote_pypa_master' into feat/setupcfg_handling
parents
cf7bb334
a83ae992
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
7 deletions
+15
-7
.travis.yml
.travis.yml
+0
-2
CHANGES.rst
CHANGES.rst
+10
-0
setup.cfg
setup.cfg
+1
-1
setup.py
setup.py
+3
-3
setuptools/tests/test_namespaces.py
setuptools/tests/test_namespaces.py
+1
-1
No files found.
.travis.yml
View file @
ef583b28
...
...
@@ -24,8 +24,6 @@ script:
#- python -m tox
-
tox
before_deploy
:
-
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=1
deploy
:
provider
:
pypi
# Also update server in setup.cfg
...
...
CHANGES.rst
View file @
ef583b28
...
...
@@ -2,6 +2,16 @@
CHANGES
=======
v29
.0.1
-------
*
#
861
:
Re
-
release
of
v29
.0.1
with
the
executable
script
launchers
bundled
.
Now
,
launchers
are
included
by
default
and
users
that
want
to
disable
this
behavior
must
set
the
environment
variable
'SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES'
to
a
false
value
like
"false"
or
"0"
.
v29
.0.0
-------
...
...
setup.cfg
View file @
ef583b28
[bumpversion]
current_version = 29.0.
0
current_version = 29.0.
1
commit = True
tag = True
...
...
setup.py
View file @
ef583b28
...
...
@@ -54,8 +54,8 @@ package_data = dict(
)
force_windows_specific_files
=
(
os
.
environ
.
get
(
"SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES"
)
not
in
(
None
,
""
,
"0
"
)
os
.
environ
.
get
(
"SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES"
,
"1"
).
lower
(
)
not
in
(
""
,
"0"
,
"false"
,
"no
"
)
)
include_windows_files
=
(
...
...
@@ -85,7 +85,7 @@ def pypi_link(pkg_filename):
setup_params
=
dict
(
name
=
"setuptools"
,
version
=
"29.0.
0
"
,
version
=
"29.0.
1
"
,
description
=
"Easily download, build, install, upgrade, and uninstall "
"Python packages"
,
author
=
"Python Packaging Authority"
,
...
...
setuptools/tests/test_namespaces.py
View file @
ef583b28
...
...
@@ -13,7 +13,7 @@ class TestNamespaces:
@
pytest
.
mark
.
xfail
(
sys
.
version_info
<
(
3
,
3
),
reason
=
"Requires PEP 420"
)
@
pytest
.
mark
.
skipif
(
'os.environ.get("APPVEYOR")'
,
@
pytest
.
mark
.
skipif
(
os
.
environ
.
get
(
"APPVEYOR"
)
,
reason
=
"https://github.com/pypa/setuptools/issues/851"
)
def
test_mixed_site_and_non_site
(
self
,
tmpdir
):
"""
...
...
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