Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build because of broken dependency #869

Merged
merged 2 commits into from
Jan 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM tiangolo/uwsgi-nginx-flask:python3.7

RUN apt update \
&& apt -y install gcc g++ libffi-dev libstdc++-8-dev python3-dev musl-dev libssl-dev curl bash
&& apt -y install gcc g++ libffi-dev python3-dev musl-dev libssl-dev curl bash

COPY ./app/requirements.txt /
COPY ./test_requirements.txt /

RUN cd / && pip install -r requirements.txt && pip install -r test_requirements.txt

RUN apt remove --purge -y gcc g++ libffi-dev libstdc++-8-dev python3-dev musl-dev libssl-dev
RUN apt remove --purge -y gcc g++ libffi-dev python3-dev musl-dev libssl-dev

RUN apt -y install libcairo2 libpango-1.0-0 libpangocairo-1.0-0 libgdk-pixbuf2.0-0 libffi-dev shared-mime-info

Expand Down
3 changes: 2 additions & 1 deletion app/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@ weasyprint==51
web3==5.12.0
jinja2<3.1.0
itsdangerous==2.0.1
werkzeug==0.16.1
werkzeug==0.16.1
importlib-metadata==4.12.0
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
logging.basicConfig(level=env_loglevel)
logg = logging.getLogger(__name__)

VERSION = '2.2.3' # Remember to bump this in every PR
VERSION = '2.2.4' # Remember to bump this in every PR

logg.info('Loading configs at UTC {}'.format(datetime.datetime.utcnow()))

Expand Down
2 changes: 1 addition & 1 deletion eth_worker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ requests==2.24.0
sentry-sdk==0.19.2
SQLAlchemy==1.3.18
web3==5.12.0

importlib-metadata==4.12.0