Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.bio.csu
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bob
bob.bio.csu
Commits
a41e6bda
Commit
a41e6bda
authored
10 years ago
by
Manuel Günther
Browse files
Options
Downloads
Patches
Plain Diff
Trial to get opencv running on travis
parent
dfb17d5f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.travis.yml
+1
-2
1 addition, 2 deletions
.travis.yml
doc/conf.py
+5
-5
5 additions, 5 deletions
doc/conf.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
7 additions
and
8 deletions
.travis.yml
+
1
−
2
View file @
a41e6bda
...
@@ -16,7 +16,7 @@ before_install:
...
@@ -16,7 +16,7 @@ before_install:
-
sudo apt-get install -qq --force-yes libatlas-dev libatlas-base-dev liblapack-dev gfortran
-
sudo apt-get install -qq --force-yes libatlas-dev libatlas-base-dev liblapack-dev gfortran
-
sudo apt-get install -qq --force-yes python-opencv libcv-dev libcvaux-dev libopencv-dev
-
sudo apt-get install -qq --force-yes python-opencv libcv-dev libcvaux-dev libopencv-dev
-
sudo apt-get install -qq --force-yes python-numpy python-scipy python-matplotlib
-
sudo apt-get install -qq --force-yes python-numpy python-scipy python-matplotlib
-
pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --use-wheel sphinx nose numpy scipy matplotlib coverage
-
pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --use-wheel
pillow
sphinx nose numpy scipy matplotlib coverage
-
pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --use-wheel --pre -r requirements.txt coveralls
-
pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --use-wheel --pre -r requirements.txt coveralls
install
:
install
:
-
python bootstrap-buildout.py
-
python bootstrap-buildout.py
...
@@ -33,7 +33,6 @@ script:
...
@@ -33,7 +33,6 @@ script:
-
./bin/sphinx-build -b html doc sphinx
-
./bin/sphinx-build -b html doc sphinx
after_success
:
after_success
:
-
coveralls
-
coveralls
-
coveralls
-
wget https://raw.githubusercontent.com/bioidiap/bob.extension/master/scripts/upload-{sphinx,wheel}.sh
-
wget https://raw.githubusercontent.com/bioidiap/bob.extension/master/scripts/upload-{sphinx,wheel}.sh
-
chmod a+x upload-sphinx.sh upload-wheel.sh
-
chmod a+x upload-sphinx.sh upload-wheel.sh
-
./upload-sphinx.sh
-
./upload-sphinx.sh
...
...
This diff is collapsed.
Click to expand it.
doc/conf.py
+
5
−
5
View file @
a41e6bda
...
@@ -59,12 +59,12 @@ source_suffix = '.rst'
...
@@ -59,12 +59,12 @@ source_suffix = '.rst'
master_doc
=
'
index
'
master_doc
=
'
index
'
# General information about the project.
# General information about the project.
project
=
u
'
Wrapper classes to use the CSU tools with
the FaceRecLib
'
project
=
u
'
Wrapper classes to use the CSU tools with
bob.bio
'
import
time
import
time
copyright
=
u
'
%s, Idiap Research Institute
'
%
time
.
strftime
(
'
%Y
'
)
copyright
=
u
'
%s, Idiap Research Institute
'
%
time
.
strftime
(
'
%Y
'
)
# Grab the setup entry
# Grab the setup entry
distribution
=
pkg_resources
.
require
(
'
xfacereclib.extension.CSU
'
)[
0
]
distribution
=
pkg_resources
.
require
(
'
bob.bio.csu
'
)[
0
]
# The short X.Y version.
# The short X.Y version.
version
=
distribution
.
version
version
=
distribution
.
version
...
@@ -184,7 +184,7 @@ html_favicon = ''
...
@@ -184,7 +184,7 @@ html_favicon = ''
#html_file_suffix = None
#html_file_suffix = None
# Output file base name for HTML help builder.
# Output file base name for HTML help builder.
htmlhelp_basename
=
'
xfacereclib_extens
io
n
_csu_doc
'
htmlhelp_basename
=
'
bob_b
io_csu_doc
'
# -- Options for LaTeX output --------------------------------------------------
# -- Options for LaTeX output --------------------------------------------------
...
@@ -233,7 +233,7 @@ rst_epilog = ''
...
@@ -233,7 +233,7 @@ rst_epilog = ''
# One entry per manual page. List of tuples
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
# (source start file, name, description, authors, manual section).
man_pages
=
[
man_pages
=
[
(
'
index
'
,
'
facereclib
'
,
u
'
FaceRecLib
Documentation
'
,
[
u
'
Idiap Research Institute
'
],
1
)
(
'
index
'
,
'
bob.bio.csu
'
,
u
'
Documentation
'
,
[
u
'
Idiap Research Institute
'
],
1
)
]
]
# Default processing flags for sphinx
# Default processing flags for sphinx
...
@@ -243,7 +243,7 @@ autodoc_default_flags = ['members', 'undoc-members', 'inherited-members', 'show-
...
@@ -243,7 +243,7 @@ autodoc_default_flags = ['members', 'undoc-members', 'inherited-members', 'show-
# For inter-documentation mapping:
# For inter-documentation mapping:
from
bob.extension.utils
import
link_documentation
from
bob.extension.utils
import
link_documentation
intersphinx_mapping
=
link_documentation
([
'
python
'
,
'
bob.io.base
'
,
'
facereclib
'
])
intersphinx_mapping
=
link_documentation
([
'
python
'
,
'
bob.io.base
'
,
'
bob.bio.base
'
])
def
setup
(
app
):
def
setup
(
app
):
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
a41e6bda
...
@@ -70,7 +70,7 @@ setup(
...
@@ -70,7 +70,7 @@ setup(
# on the current system will be installed locally and only visible to the
# on the current system will be installed locally and only visible to the
# scripts of this package. Don't worry - You won't need administrative
# scripts of this package. Don't worry - You won't need administrative
# privileges when using buildout.
# privileges when using buildout.
install_requires
=
install_requires
,
install_requires
=
[
'
setuptools
'
]
,
# Your project should be called something like 'bob.<foo>' or
# Your project should be called something like 'bob.<foo>' or
# 'bob.<foo>.<bar>'. To implement this correctly and still get all your
# 'bob.<foo>.<bar>'. To implement this correctly and still get all your
...
...
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