Skip to content
Snippets Groups Projects
Commit 79a869714ae7 authored by Alain Leufroy's avatar Alain Leufroy
Browse files

fix install dependancy conflict (yapps)

parent 6405b59a8355
No related branches found
No related tags found
No related merge requests found
...@@ -69,8 +69,8 @@ ...@@ -69,8 +69,8 @@
else: else:
ext_modules = [ Extension('rql_solve', ext_modules = [ Extension('rql_solve',
['gecode_solver.cpp'], ['gecode_solver.cpp'],
libraries=['GecodeInt-3-3-1-r-x86', libraries=['GecodeInt-3-3-1-r-x86',
'GecodeKernel-3-3-1-r-x86', 'GecodeKernel-3-3-1-r-x86',
'GecodeSearch-3-3-1-r-x86', 'GecodeSearch-3-3-1-r-x86',
'GecodeSupport-3-3-1-r-x86', 'GecodeSupport-3-3-1-r-x86',
], ],
...@@ -82,9 +82,9 @@ ...@@ -82,9 +82,9 @@
install_requires = [ install_requires = [
'logilab-common >= 0.47.0', 'logilab-common >= 0.47.0',
'logilab-database', 'logilab-database',
'yapps2 >= 2.1.1', 'yapps == 2.1.1', # XXX to ensure we don't use the broken pypi version
'constraint', # fallback if the gecode compiled module is missing 'constraint', # fallback if the gecode compiled module is missing
] ]
# links to download yapps2 package that is not (yet) registered in pypi # links to download yapps2 package that is not (yet) registered in pypi
dependency_links = [ dependency_links = [
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
'constraint', # fallback if the gecode compiled module is missing 'constraint', # fallback if the gecode compiled module is missing
] ]
# links to download yapps2 package that is not (yet) registered in pypi # links to download yapps2 package that is not (yet) registered in pypi
dependency_links = [ dependency_links = [
"http://ftp.logilab.org/pub/yapps/yapps2-2.1.1.zip#egg=yapps2-2.1.1", "http://ftp.logilab.org/pub/yapps/yapps2-2.1.1.zip#egg=yapps-2.1.1",
] ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment