Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
ail
Commits
1db4be1479f2
Commit
1db4be14
authored
Oct 27, 2021
by
Fabien Amarger
Browse files
fix check-manifest
Use install_lib from setuptools instead of distutils
parent
ec411345242b
Pipeline
#90423
failed with stages
in 1 minute and 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
1db4be14
...
...
@@ -21,8 +21,8 @@
import
os
import
sys
import
shutil
from
distutils.core
import
setup
from
distuti
ls
import
command
from
setuptools.command.install_lib
import
install_lib
from
setuptoo
ls
import
setup
from
os.path
import
isdir
,
exists
,
join
from
os
import
walk
...
...
@@ -140,5 +140,5 @@
EMPTY_FILE
=
'"""generated file, don
\'
t modify or your data will be lost"""
\n
'
class
BuildScripts
(
command
.
install_lib
.
install_lib
):
class
BuildScripts
(
install_lib
):
def
run
(
self
):
...
...
@@ -144,5 +144,5 @@
def
run
(
self
):
command
.
install_lib
.
install_lib
.
run
(
self
)
install_lib
.
run
(
self
)
# manually install included directories if any
if
include_dirs
:
base
=
join
(
modname
)
...
...
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