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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dev
ltfatpy
Commits
fb17515f
There was a problem fetching the pipeline summary.
Commit
fb17515f
authored
7 years ago
by
Denis Arrivault
Browse files
Options
Downloads
Patches
Plain Diff
UP with pip upgrade and debian patches
parent
1bd034fd
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-0
1 addition, 0 deletions
.gitlab-ci.yml
setup.py
+8
-13
8 additions, 13 deletions
setup.py
with
9 additions
and
13 deletions
.gitlab-ci.yml
+
1
−
0
View file @
fb17515f
...
...
@@ -22,6 +22,7 @@ before_script:
-
export PYTHONPATH=$PYTHONPATH:$SITE_PACKAGES
-
apt-get update -yq && apt-get -o dir::cache::archives="$APT_CACHE_DIR" install -y cmake libfftw3-dev
-
apt-get -o dir::cache::archives="$APT_CACHE_DIR" install -y liblapack-dev python3.5 python3.5-dev python3-pip
-
pip3 install --upgrade pip
-
pip3 install --target=$SITE_PACKAGES scipy matplotlib nose coverage
# Main build
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
8
−
13
View file @
fb17515f
...
...
@@ -66,14 +66,9 @@ import distutils.spawn as ds
import
distutils.dir_util
as
dd
# Always prefer setuptools over distutils
try
:
from
setuptools
import
setup
,
Extension
from
setuptools.command.clean
import
clean
from
setuptools.command.sdist
import
sdist
except
ImportError
:
from
distutils.core
import
setup
,
Extension
from
distutils.command.clean
import
clean
from
distutils.command.sdist
import
sdist
from
setuptools
import
setup
,
find_packages
,
Extension
from
distutils.command.clean
import
clean
from
distutils.command.sdist
import
sdist
# Test if Cython is installed
USE_CYTHON
=
True
...
...
@@ -214,7 +209,8 @@ class m_build_ext(build_ext):
##########################
def
read
(
*
paths
):
"""
Build a file path from *paths* and return the contents.
"""
with
open
(
os
.
path
.
join
(
*
paths
),
'
r
'
)
as
f
:
from
io
import
open
with
open
(
os
.
path
.
join
(
*
paths
),
'
r
'
,
encoding
=
'
utf-8
'
)
as
f
:
return
f
.
read
()
...
...
@@ -320,11 +316,10 @@ def setup_package():
long_description
=
(
read
(
'
README.rst
'
)
+
'
\n\n
'
+
read
(
'
HISTORY.rst
'
)
+
'
\n\n
'
+
read
(
'
AUTHORS.rst
'
)),
packages
=
[
"
ltfatpy
"
,
"
ltfatpy.comp
"
,
"
ltfatpy.fourier
"
,
"
ltfatpy.gabor
"
,
"
ltfatpy.signals
"
,
"
ltfatpy.sigproc
"
,
"
ltfatpy.tools
"
],
packages
=
find_packages
(),
package_data
=
{
'
ltfatpy.signals
'
:
[
'
*.wav
'
],
'
ltfatpy.comp
'
:
[
'
*.pxd
'
]},
'
ltfatpy.comp
'
:
[
'
*.pxd
'
],
'
ltfatpy.tests.datasets
'
:
[
'
*.mat
'
]},
url
=
"
https://gitlab.lif.univ-mrs.fr/dev/ltfatpy
"
,
license
=
'
GNU GPL V3
'
,
author
=
'
Denis Arrivault and Florent Jaillet
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment