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
f012485e
Commit
f012485e
authored
Nov 25, 2017
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disallow unordered sequences for specifying install_requires. Fixes #458.
parent
45f6ce2a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
CHANGES.rst
CHANGES.rst
+7
-0
setuptools/dist.py
setuptools/dist.py
+2
-0
No files found.
CHANGES.rst
View file @
f012485e
v38
.0.0
-------
*
#
458
:
In
order
to
support
deterministic
builds
,
Setuptools
no
longer
allows
packages
to
declare
``
install_requires
``
as
unordered
sequences
(
sets
or
dicts
).
v37
.0.0
-------
...
...
setuptools/dist.py
View file @
f012485e
...
...
@@ -166,6 +166,8 @@ def check_requirements(dist, attr, value):
"""Verify that install_requires is a valid requirements list"""
try
:
list
(
pkg_resources
.
parse_requirements
(
value
))
if
isinstance
(
value
,
(
dict
,
set
)):
raise
TypeError
(
"Unordered types are not allowed"
)
except
(
TypeError
,
ValueError
)
as
error
:
tmpl
=
(
"{attr!r} must be a string or list of strings "
...
...
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