diff --git a/airflow/requirements_airflow.txt b/airflow/requirements_airflow.txt index c49aafca..b2855fb0 100644 --- a/airflow/requirements_airflow.txt +++ b/airflow/requirements_airflow.txt @@ -4,4 +4,5 @@ discord-webhook==0.14.0 eth-rlp==0.2.1 # Fixes install conflicts issue in Composer -polygon-etl==0.2.1 +eth-utils==1.8.4 # Fixes install conflicts issue in Composer +polygon-etl==0.2.2 diff --git a/cli/setup.py b/cli/setup.py index 5e5b813d..14fb95c1 100644 --- a/cli/setup.py +++ b/cli/setup.py @@ -11,7 +11,7 @@ def read(fname): setup( name="polygon-etl", - version="0.2.1", + version="0.2.2", author="Evgeny Medvedev", author_email="evge.medvedev@gmail.com", description="Tools for exporting Polygon blockchain data to CSV or JSON", @@ -46,6 +46,7 @@ def read(fname): extras_require={ "streaming": [ "google-cloud-pubsub==2.1.0", + "pytz", # See https://github.com/googleapis/python-pubsub/issues/468 "google-cloud-storage==1.33.0", "pg8000==1.13.2", "sqlalchemy==1.3.13",