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
5ce9e5f3
Commit
5ce9e5f3
authored
Jan 19, 2020
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
👹
Feed the hobgoblins (delint).
parent
313ac58f
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
51 additions
and
51 deletions
+51
-51
docs/conf.py
docs/conf.py
+4
-4
setuptools/__init__.py
setuptools/__init__.py
+2
-2
setuptools/command/build_clib.py
setuptools/command/build_clib.py
+15
-15
setuptools/dist.py
setuptools/dist.py
+1
-1
setuptools/msvc.py
setuptools/msvc.py
+1
-1
setuptools/tests/__init__.py
setuptools/tests/__init__.py
+1
-1
setuptools/tests/test_build_clib.py
setuptools/tests/test_build_clib.py
+1
-2
setuptools/tests/test_config.py
setuptools/tests/test_config.py
+3
-3
setuptools/tests/test_easy_install.py
setuptools/tests/test_easy_install.py
+13
-13
setuptools/tests/test_setuptools.py
setuptools/tests/test_setuptools.py
+4
-4
setuptools/tests/test_wheel.py
setuptools/tests/test_wheel.py
+6
-5
No files found.
docs/conf.py
View file @
5ce9e5f3
...
...
@@ -64,10 +64,10 @@ html_use_index = False
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author,
# documentclass [howto/manual]).
latex_documents
=
[
(
'index'
,
'Setuptools.tex'
,
'Setuptools Documentation'
,
'The fellowship of the packaging'
,
'manual'
)
,
]
latex_documents
=
[
(
'index'
,
'Setuptools.tex'
,
'Setuptools Documentation'
,
'The fellowship of the packaging'
,
'manual'
,
)
]
link_files
=
{
'../CHANGES.rst'
:
dict
(
...
...
setuptools/__init__.py
View file @
5ce9e5f3
setuptools/command/build_clib.py
View file @
5ce9e5f3
...
...
@@ -68,7 +68,7 @@ class build_clib(orig.build_clib):
expected_objects
=
self
.
compiler
.
object_filenames
(
sources
,
output_dir
=
self
.
build_temp
output_dir
=
self
.
build_temp
,
)
if
(
...
...
setuptools/dist.py
View file @
5ce9e5f3
setuptools/msvc.py
View file @
5ce9e5f3
setuptools/tests/__init__.py
View file @
5ce9e5f3
setuptools/tests/test_build_clib.py
View file @
5ce9e5f3
...
...
@@ -8,8 +8,7 @@ from setuptools.dist import Distribution
class
TestBuildCLib
:
@
mock
.
patch
(
'setuptools.command.build_clib.newer_pairwise_group'
)
'setuptools.command.build_clib.newer_pairwise_group'
)
def
test_build_libraries
(
self
,
mock_newer
):
dist
=
Distribution
()
cmd
=
build_clib
(
dist
)
...
...
setuptools/tests/test_config.py
View file @
5ce9e5f3
setuptools/tests/test_easy_install.py
View file @
5ce9e5f3
...
...
@@ -629,7 +629,7 @@ class TestSetupRequires:
test_pkg
=
create_setup_requires_package
(
temp_dir
,
setup_attrs
=
dict
(
version
=
'attr: foobar.version'
),
make_package
=
make_dependency_sdist
,
use_setup_cfg
=
use_setup_cfg
+
(
'version'
,),
use_setup_cfg
=
use_setup_cfg
+
(
'version'
,),
)
test_setup_py
=
os
.
path
.
join
(
test_pkg
,
'setup.py'
)
with
contexts
.
quiet
()
as
(
stdout
,
stderr
):
...
...
setuptools/tests/test_setuptools.py
View file @
5ce9e5f3
setuptools/tests/test_wheel.py
View file @
5ce9e5f3
...
...
@@ -125,7 +125,8 @@ def flatten_tree(tree):
def
format_install_tree
(
tree
):
return
{
x
.
format
(
return
{
x
.
format
(
py_version
=
PY_MAJOR
,
platform
=
get_platform
(),
shlib_ext
=
get_config_var
(
'EXT_SUFFIX'
)
or
get_config_var
(
'SO'
))
...
...
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