Skip to content

Commit 5b3316a

Browse files
committed
Revert "resolve conflicts with master"
This reverts commit f3b376f, reversing changes made to dc23aa1.
1 parent f3b376f commit 5b3316a

File tree

162 files changed

+1122
-3005
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+1122
-3005
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# These are supported funding model platforms
22

3-
custom: https://gitcoin.co/grants/233/ethereumetl
3+
github: [medvedev1088]
44

.github/workflows/publish-to-dockerhub.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/publish-to-pypi.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,3 @@ ENV/
5151
last_synced_block.txt
5252
pyrightconfig.json
5353
pyrightconfig.json
54-
55-
# etl
56-
/last_synced_block.txt

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ language: python
22
dist: xenial
33
matrix:
44
include:
5-
- python: "3.7.2"
5+
- python: "3.5"
6+
env: TOX_POSARGS="-e py35"
7+
- python: "3.6"
8+
env: TOX_POSARGS="-e py36"
9+
- python: "3.7"
610
env: TOX_POSARGS="-e py37"
7-
- python: "3.8"
8-
env: TOX_POSARGS="-e py38"
9-
- python: "3.9"
10-
env: TOX_POSARGS="-e py39"
1111
install:
1212
- travis_retry pip install tox
1313
script:
14-
- travis_wait tox $TOX_POSARGS
14+
- tox $TOX_POSARGS

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM python:3.7
2-
MAINTAINER Evgeny Medvedev <evge.medvedev@gmail.com>
1+
FROM python:3.6-alpine
2+
MAINTAINER Eric Lim <elim0322@gmail.com>
33
ENV PROJECT_DIR=ethereum-etl
44

55
RUN mkdir /$PROJECT_DIR
66
WORKDIR /$PROJECT_DIR
77
COPY . .
88
RUN apk add --no-cache gcc musl-dev #for C libraries: <limits.h> <stdio.h>
9-
RUN pip install --upgrade pip && pip install -e /$PROJECT_DIR/[streaming]
9+
RUN pip install --upgrade pip && pip install -e /$PROJECT_DIR/
1010
RUN apt-get update && apt-get install -y apt-transport-https ca-certificates curl gnupg && \
1111
curl -sLf --retry 3 --tlsv1.2 --proto "=https" 'https://packages.doppler.com/public/cli/gpg.DE2A7741A397C129.key' | apt-key add - && \
1212
echo "deb https://packages.doppler.com/public/cli/deb/debian any-version main" | tee /etc/apt/sources.list.d/doppler-cli.list && \

0 commit comments

Comments
 (0)