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
d079163e
Commit
d079163e
authored
Jul 17, 2016
by
Xavier Fernandez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Also update the Metadata-Version when adding Requires-Python
parent
fd3ff004
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
3 deletions
+41
-3
setuptools/dist.py
setuptools/dist.py
+37
-1
setuptools/tests/test_egg_info.py
setuptools/tests/test_egg_info.py
+4
-2
No files found.
setuptools/dist.py
View file @
d079163e
...
@@ -12,6 +12,7 @@ import distutils.dist
...
@@ -12,6 +12,7 @@ import distutils.dist
from
distutils.core
import
Distribution
as
_Distribution
from
distutils.core
import
Distribution
as
_Distribution
from
distutils.errors
import
(
DistutilsOptionError
,
DistutilsPlatformError
,
from
distutils.errors
import
(
DistutilsOptionError
,
DistutilsPlatformError
,
DistutilsSetupError
)
DistutilsSetupError
)
from
distutils.util
import
rfc822_escape
from
setuptools.extern
import
six
from
setuptools.extern
import
six
from
setuptools.extern.six.moves
import
map
from
setuptools.extern.six.moves
import
map
...
@@ -44,10 +45,45 @@ def _patch_distribution_metadata_write_pkg_file():
...
@@ -44,10 +45,45 @@ def _patch_distribution_metadata_write_pkg_file():
"""Patch write_pkg_file to also write Requires-Python/Requires-External"""
"""Patch write_pkg_file to also write Requires-Python/Requires-External"""
original_write
=
distutils
.
dist
.
DistributionMetadata
.
write_pkg_file
original_write
=
distutils
.
dist
.
DistributionMetadata
.
write_pkg_file
# Based on Python 3.5 version
def
write_pkg_file
(
self
,
file
):
def
write_pkg_file
(
self
,
file
):
"""Write the PKG-INFO format data to a file object.
"""Write the PKG-INFO format data to a file object.
"""
"""
original_write
(
self
,
file
)
version
=
'1.0'
if
(
self
.
provides
or
self
.
requires
or
self
.
obsoletes
or
self
.
classifiers
or
self
.
download_url
):
version
=
'1.1'
# Setuptools specific for PEP 345
if
hasattr
(
self
,
'python_requires'
):
version
=
'1.2'
file
.
write
(
'Metadata-Version: %s
\
n
'
%
version
)
file
.
write
(
'Name: %s
\
n
'
%
self
.
get_name
())
file
.
write
(
'Version: %s
\
n
'
%
self
.
get_version
())
file
.
write
(
'Summary: %s
\
n
'
%
self
.
get_description
())
file
.
write
(
'Home-page: %s
\
n
'
%
self
.
get_url
())
file
.
write
(
'Author: %s
\
n
'
%
self
.
get_contact
())
file
.
write
(
'Author-email: %s
\
n
'
%
self
.
get_contact_email
())
file
.
write
(
'License: %s
\
n
'
%
self
.
get_license
())
if
self
.
download_url
:
file
.
write
(
'Download-URL: %s
\
n
'
%
self
.
download_url
)
long_desc
=
rfc822_escape
(
self
.
get_long_description
())
file
.
write
(
'Description: %s
\
n
'
%
long_desc
)
keywords
=
','
.
join
(
self
.
get_keywords
())
if
keywords
:
file
.
write
(
'Keywords: %s
\
n
'
%
keywords
)
self
.
_write_list
(
file
,
'Platform'
,
self
.
get_platforms
())
self
.
_write_list
(
file
,
'Classifier'
,
self
.
get_classifiers
())
# PEP 314
self
.
_write_list
(
file
,
'Requires'
,
self
.
get_requires
())
self
.
_write_list
(
file
,
'Provides'
,
self
.
get_provides
())
self
.
_write_list
(
file
,
'Obsoletes'
,
self
.
get_obsoletes
())
# Setuptools specific for PEP 345
if
hasattr
(
self
,
'python_requires'
):
if
hasattr
(
self
,
'python_requires'
):
file
.
write
(
'Requires-Python: %s
\
n
'
%
self
.
python_requires
)
file
.
write
(
'Requires-Python: %s
\
n
'
%
self
.
python_requires
)
...
...
setuptools/tests/test_egg_info.py
View file @
d079163e
...
@@ -223,8 +223,10 @@ class TestEggInfo(object):
...
@@ -223,8 +223,10 @@ class TestEggInfo(object):
env
=
environ
,
env
=
environ
,
)
)
egg_info_dir
=
os
.
path
.
join
(
'.'
,
'foo.egg-info'
)
egg_info_dir
=
os
.
path
.
join
(
'.'
,
'foo.egg-info'
)
pkginfo
=
os
.
path
.
join
(
egg_info_dir
,
'PKG-INFO'
)
with
open
(
os
.
path
.
join
(
egg_info_dir
,
'PKG-INFO'
))
as
pkginfo_file
:
assert
'Requires-Python: >=2.7.12'
in
open
(
pkginfo
).
read
().
split
(
'
\
n
'
)
pkg_info_lines
=
pkginfo_file
.
read
().
split
(
'
\
n
'
)
assert
'Requires-Python: >=2.7.12'
in
pkg_info_lines
assert
'Metadata-Version: 1.2'
in
pkg_info_lines
def
test_python_requires_install
(
self
,
tmpdir_cwd
,
env
):
def
test_python_requires_install
(
self
,
tmpdir_cwd
,
env
):
self
.
_setup_script_with_requires
(
self
.
_setup_script_with_requires
(
...
...
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