Skip to content

Commit

Permalink
chore: revert bundle fix for further discussion (#401)
Browse files Browse the repository at this point in the history
* Revert "Bump version to 2.4.6 (#400)"

* Revert "remove v1_0_1 virtual environment from Dockerfile (#399)"
  • Loading branch information
saikonen authored Nov 8, 2023
1 parent 94dd9cc commit 657e526
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ RUN apt-get update -y \

RUN pip3 install virtualenv requests

# TODO: possibly unused virtualenv. See if it can be removed
RUN virtualenv /opt/v_1_0_1 -p python3
# All of the official deployment templates reference this virtualenv for launching services.
RUN virtualenv /opt/latest -p python3

RUN /opt/v_1_0_1/bin/pip install https://github.com/Netflix/metaflow-service/archive/1.0.1.zip

ADD services/__init__.py /root/services/
ADD services/data/service_configs.py /root/services/
ADD services/data /root/services/data
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def open_and_read_if_exists(path: str):

setup(
name="metadata_service",
version="2.4.6",
version="2.4.5",
license="Apache License 2.0",
description="Metadata Service: backend service for Metaflow",
long_description=long_description,
Expand Down

0 comments on commit 657e526

Please sign in to comment.