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
157
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
Compare
version 11
version 15
ae7f05eb
2 months ago
version 14
fc79ba69
2 months ago
version 13
29eb76b1
2 months ago
version 12
f6f932e0
2 months ago
version 11
7d2630f7
2 months ago
version 10
604a726f
2 months ago
version 9
7f7ca8a5
2 months ago
version 8
62415857
2 months ago
version 7
a7b66dea
2 months ago
version 6
84079c04
2 months ago
version 5
0ed5dfe5
2 months ago
version 4
a5d7d6c8
2 months ago
version 3
b6d8f25b
2 months ago
version 2
32fb2344
2 months ago
version 1
123bf64d
2 months ago
master (base)
and
version 12
latest version
154dec91
37 commits,
2 months ago
version 15
ae7f05eb
36 commits,
2 months ago
version 14
fc79ba69
35 commits,
2 months ago
version 13
29eb76b1
34 commits,
2 months ago
version 12
f6f932e0
33 commits,
2 months ago
version 11
7d2630f7
32 commits,
2 months ago
version 10
604a726f
31 commits,
2 months ago
version 9
7f7ca8a5
30 commits,
2 months ago
version 8
62415857
29 commits,
2 months ago
version 7
a7b66dea
28 commits,
2 months ago
version 6
84079c04
27 commits,
2 months ago
version 5
0ed5dfe5
26 commits,
2 months ago
version 4
a5d7d6c8
25 commits,
2 months ago
version 3
b6d8f25b
24 commits,
2 months ago
version 2
32fb2344
23 commits,
2 months ago
version 1
123bf64d
22 commits,
2 months ago
Show latest version
1 file
+
3
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
setup.py
+
3
−
1
View file @ f6f932e0
Edit in single-file editor
Open in Web IDE
Show full file
@@ -209,6 +209,8 @@ def run_uninstall(root_dir):
class
m_build_ext
(
build_ext
):
def
run
(
self
):
if
USE_CYTHON
:
remove_generated_c_file
()
root_dir
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
cur_dir
=
os
.
getcwd
()
run_cmake
(
root_dir
)
@@ -316,10 +318,10 @@ def setup_package():
# and build up the set of Extension objects
if
USE_CYTHON
:
fileExt
=
"
.pyx
"
remove_generated_c_file
()
print
(
"
Cython Used
"
)
else
:
fileExt
=
"
.c
"
print
(
"
witout Cython
"
)
extensions
=
[
makeExtension
(
name
,
fileExt
,
lib_dir
)
for
name
in
extNames
]
Loading