Skip to content

Commit 0001c0c

Browse files
committed
MAINT use bugfixed version of pyrfr
1 parent 645e014 commit 0001c0c

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ before_install:
6060
- conda install --yes gcc swig
6161
- echo "Using GCC at "`which gcc`
6262
- export CC=`which gcc`
63-
# Fixes version `GLIBCXX_3.4.21' not found (on Ubuntu 16.04)
64-
- conda install --yes libgcc
6563

6664
install:
6765
# Install general requirements the way setup.py suggests

autosklearn/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
__MANDATORY_PACKAGES__ = '''
77
numpy>=1.9
88
scikit-learn>=0.18.1,<0.19
9-
smac==0.6.0
109
lockfile>=0.10
10+
smac>=0.6.0,<0.7
11+
pyrfr>=0.6.1,<0.7
1112
ConfigSpace>=0.3.3,<0.4
1213
pyrfr>=0.6.0,<0.7
1314
'''

doc/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ the Section `Installing auto-sklearn`_.
5858
A common installation problem under recent Linux distribution is the
5959
incompability of the compiler version used to compile the Python binary
6060
shipped by AnaConda and the compiler installed by the distribution. This can
61-
be solved by istalling the *gcc* compiler shipped with AnaConda (as well as
61+
be solved by installing the *gcc* compiler shipped with AnaConda (as well as
6262
*swig*):
6363

6464
.. code:: bash

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ pandas
1818

1919
ConfigSpace>=0.3.3,<0.4
2020
pynisher>=0.4
21-
pyrfr>=0.6.0,<0.7
22-
smac==0.6.0
21+
pyrfr>=0.6.1,<0.7
22+
smac>=0.6.0,<0.7

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
"liac-arff",
2727
"pandas",
2828
"ConfigSpace>=0.3.3,<0.4",
29-
"pynisher>=0.4",
30-
"pyrfr>=0.6,<0.7",
31-
"smac==0.6.0"
29+
"pynisher>=0.4,<0.5",
30+
"pyrfr>=0.6.1,<0.7",
31+
"smac>=0.6.0,<0.7"
3232
]
3333

3434
with open("autosklearn/__version__.py") as fh:

0 commit comments

Comments
 (0)