Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.learn.em
Commits
752e2055
Commit
752e2055
authored
May 18, 2015
by
Tiago de Freitas Pereira
Browse files
Set a minimum version for the bob.extension
parent
4c34bb84
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
752e2055
...
...
@@ -6,7 +6,7 @@
bob_packages
=
[
'bob.core'
,
'bob.io.base'
,
'bob.sp'
,
'bob.math'
,
'bob.learn.activation'
,
'bob.learn.linear'
]
from
setuptools
import
setup
,
find_packages
,
dist
dist
.
Distribution
(
dict
(
setup_requires
=
[
'bob.extension'
,
'bob.blitz'
]
+
bob_packages
))
dist
.
Distribution
(
dict
(
setup_requires
=
[
'bob.extension
>=2.0.7
'
,
'bob.blitz'
]
+
bob_packages
))
from
bob.blitz.extension
import
Extension
,
Library
,
build_ext
from
bob.extension.utils
import
load_requirements
...
...
@@ -87,25 +87,6 @@ setup(
version
=
version
,
),
# Extension("bob.learn.em._library",
# [
# "bob/learn/em/old/bic.cc",
#
# # external requirements as boost::python bindings
# "bob/learn/em/old/blitz_numpy.cc",
# "bob/learn/em/old/ndarray.cc",
# "bob/learn/em/old/ndarray_numpy.cc",
# "bob/learn/em/old/tinyvector.cc",
# "bob/learn/em/old/random.cc",
#
# "bob/learn/em/old/main.cc",
# ],
# bob_packages = bob_packages,
# packages = packages,
# boost_modules = boost_modules,
# version = version,
# ),
Extension
(
"bob.learn.em._library"
,
[
"bob/learn/em/gaussian.cpp"
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment