Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
ltfatpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dev
ltfatpy
Merge requests
!2
3.7 to 3.10 compatibility
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
3.7 to 3.10 compatibility
ci39
into
master
Overview
1
Commits
37
Pipelines
17
Changes
1
Merged
Valentin Emiya
requested to merge
ci39
into
master
2 months ago
Overview
1
Commits
37
Pipelines
17
Changes
1
0
0
Merge request reports
Viewing commit
a7b66dea
Prev
Next
Show latest version
1 file
+
11
−
12
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
a7b66dea
Edit setup.py
· a7b66dea
Dominique Benielli
authored
2 months ago
setup.py
+
11
−
12
View file @ a7b66dea
Edit in single-file editor
Open in Web IDE
Show full file
@@ -188,18 +188,17 @@ def run_uninstall(root_dir):
@@ -188,18 +188,17 @@ def run_uninstall(root_dir):
#########################
#########################
# Custom 'build_ext' command
# Custom 'build_ext' command
#########################
#########################
"""
class m_build_ext(build_ext):
# class m_build_ext(build_ext):
"""
# Custom build_ext command
# """ Custom build_ext command """
"""
# def run(self):
def run(self):
# root_dir = os.path.dirname(os.path.abspath(__file__))
root_dir = os.path.dirname(os.path.abspath(__file__))
# cur_dir = os.getcwd()
cur_dir = os.getcwd()
# run_cmake(root_dir)
run_cmake(root_dir)
# run_make(root_dir)
run_make(root_dir)
# run_make_install(root_dir)
run_make_install(root_dir)
# os.chdir(cur_dir)
os.chdir(cur_dir)
# build_ext.run(self)
build_ext.run(self)
"""
class
m_build_ext
(
build_ext
):
class
m_build_ext
(
build_ext
):
def
run
(
self
):
def
run
(
self
):
for
dirpath
,
dirnames
,
filenames
in
os
.
walk
(
'
.
'
):
for
dirpath
,
dirnames
,
filenames
in
os
.
walk
(
'
.
'
):
Loading