Skip to content

Commit 0ff8c61

Browse files
author
Guillem Duran
committed
Make ci pass
Signed-off-by: Guillem Duran <guillem@sourced.tech>
1 parent 6edad8e commit 0ff8c61

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN apt-get update && \
1212
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
1313
locale-gen && \
1414
wget -O - https://bootstrap.pypa.io/get-pip.py | python3 && \
15-
cd ml-core && \
15+
cd ml_core && \
1616
pip3 install --no-cache-dir -r requirements.txt && \
1717
apt-get remove -y python3-dev libxml2-dev gcc g++ wget && \
1818
apt-get remove -y .*-doc .*-man >/dev/null && \

sourced/ml/core/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""MLonCode research playground."""
2+
try:
3+
import modelforge.configuration
4+
5+
modelforge.configuration.refresh()
6+
except ImportError:
7+
pass
8+
9+
__version__ = "0.8.3"

0 commit comments

Comments
 (0)