Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.io.base
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
bob
bob.io.base
Merge requests
!24
Migrate to conda based CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Migrate to conda based CI
condapackage
into
master
Overview
0
Commits
1
Pipelines
1
Changes
4
Merged
Amir MOHAMMADI
requested to merge
condapackage
into
master
7 years ago
Overview
0
Commits
1
Pipelines
1
Changes
4
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
36f4447f
1 commit,
7 years ago
4 files
+
158
−
235
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
conda/meta.yaml
0 → 100644
+
61
−
0
View file @ 36f4447f
Edit in single-file editor
Open in Web IDE
{
%
set name = 'bob.io.base' %
}
{
%
set project_dir = environ.get('RECIPE_DIR') + '/..' %
}
package
:
name
:
{{
name
}}
version
:
{{
environ.get('BOB_PACKAGE_VERSION'
,
'
0.0.1'
)
}}
build
:
number
:
{{
environ.get('BOB_BUILD_NUMBER'
,
0)
}}
run_exports
:
-
{{
pin_subpackage(name)
}}
script
:
-
cd {{ project_dir }}
{
%
if environ.get('BUILD_EGG') %
}
-
python setup.py sdist --formats=zip
{
%
endif %
}
-
python setup.py install --single-version-externally-managed --record record.txt
requirements
:
build
:
-
{{
compiler('c')
}}
-
{{
compiler('cxx')
}}
-
pkg-config {{ pkg_config }}
-
cmake {{ cmake }}
host
:
-
python {{ python }}
-
setuptools {{ setuptools }}
-
bob.extension
-
bob.blitz
-
bob.core
-
libblitz {{ libblitz }}
-
hdf5 {{ hdf5 }}
-
boost {{ boost }}
-
numpy {{ numpy }}
run
:
-
python
-
setuptools
-
boost
-
{{
pin_compatible('numpy')
}}
test
:
imports
:
-
{{
name
}}
commands
:
-
nosetests --with-coverage --cover-package={{ name }} -sv {{ name }}
-
sphinx-build -aEW {{ project_dir }}/doc {{ project_dir }}/sphinx
-
sphinx-build -aEb doctest {{ project_dir }}/doc sphinx
-
conda inspect linkages -p $PREFIX {{ name }}
# [not win]
-
conda inspect objects -p $PREFIX {{ name }}
# [osx]
requires
:
-
bob-devel {{ bob_devel }}.*
-
nose
-
coverage
-
sphinx
-
sphinx_rtd_theme
about
:
home
:
https://www.idiap.ch/software/bob/
license
:
BSD 3-Clause
summary
:
Basic IO for Bob
license_family
:
BSD
Loading