Skip to content
Open
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,5 @@ venv.bak/

# mypy
.mypy_cache/

pip-wheel-metadata/
3 changes: 0 additions & 3 deletions bin/sync-deps
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ set -ex
# Library Deps
export SLUGIFY_USES_TEXT_UNIDECODE=${SLUGIFY_USES_TEXT_UNIDECODE:-yes}
pip-compile -o deps/requirements.txt --upgrade-package airflow-docker-helper deps/requirements.in
pip-compile -o deps/testing-requirements.txt deps/requirements.txt deps/testing-requirements.in
pip-compile -o deps/dev-requirements.txt --upgrade-package releasely deps/requirements.txt deps/dev-requirements.in
pip-compile -o deps/docs-requirements.txt deps/requirements.txt deps/testing-requirements.txt deps/docs-requirements.in
pip-compile -o deps/linting-requirements.txt deps/requirements.txt deps/testing-requirements.txt deps/docs-requirements.txt deps/linting-requirements.in

# Service Image Deps
pip-compile -o images/service/deps/requirements.txt images/service/deps/requirements.in deps/requirements.txt
Expand Down
9 changes: 9 additions & 0 deletions deps/dev-requirements.in
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
releasely
sphinx
sphinx_rtd_theme
isort
black
flake8
pytest
pytest-cov
mock; python_version < '3'

35 changes: 33 additions & 2 deletions deps/dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@
#
airflow-docker-helper==0.2.0
airflow-queue-stats==0.1.4
alabaster==0.7.12 # via sphinx
alembic==1.2.1
amqp==2.5.2
apache-airflow[docker]==1.10.5
apache-airflow[celery,docker]==1.10.5
apispec[yaml]==3.0.0
appdirs==1.4.3 # via black
attrs==19.3.0
babel==2.7.0
billiard==3.6.1.0
black==19.10b0
boto3==1.7.84
botocore==1.10.84
bumpversion==0.5.3 # via releasely
Expand All @@ -24,13 +27,16 @@ click==7.0
colorama==0.4.1
colorlog==4.0.2
configparser==3.5.3
coverage==4.5.4 # via pytest-cov
croniter==0.3.30
defusedxml==0.6.0
dill==0.2.9
docker-pycreds==0.4.0
docker==3.7.3
docutils==0.15.2
dumb-init==1.2.2
entrypoints==0.3 # via flake8
flake8==3.7.9
flask-admin==1.5.3
flask-appbuilder==1.13.1
flask-babel==0.12.2
Expand All @@ -47,8 +53,10 @@ funcsigs==1.0.0
future==0.16.0
gunicorn==19.9.0
idna==2.8
imagesize==1.1.0 # via sphinx
importlib-metadata==0.23
iso8601==0.1.12
isort==4.3.21
itsdangerous==1.1.0
jinja2==2.10.3
jmespath==0.9.4
Expand All @@ -63,44 +71,67 @@ markupsafe==1.1.1
marshmallow-enum==1.5.1
marshmallow-sqlalchemy==0.19.0
marshmallow==2.19.5
mccabe==0.6.1 # via flake8
more-itertools==7.2.0
numpy==1.17.3
ordereddict==1.1
packaging==19.2 # via pytest, sphinx
pandas==0.25.2
pathspec==0.6.0 # via black
pendulum==1.4.4
pluggy==0.13.1 # via pytest
prison==0.1.0
psutil==5.6.3
py==1.8.0 # via pytest
pycodestyle==2.5.0 # via flake8
pyflakes==2.1.1 # via flake8
pygments==2.4.2
pyjwt==1.7.1
pyparsing==2.4.5 # via packaging
pyrsistent==0.15.4
pytest-cov==2.8.1
pytest==5.3.0
python-daemon==2.1.2
python-dateutil==2.8.0
python-editor==1.0.4
python3-openid==3.1.0
pytz==2019.3
pytzdata==2019.3
pyyaml==5.1.2
regex==2019.11.1 # via black
releasely==1.0.5
requests==2.22.0
s3transfer==0.1.13
setproctitle==1.1.10
six==1.12.0
snowballstemmer==2.0.0 # via sphinx
sphinx-rtd-theme==0.4.3
sphinx==2.2.1
sphinxcontrib-applehelp==1.0.1 # via sphinx
sphinxcontrib-devhelp==1.0.1 # via sphinx
sphinxcontrib-htmlhelp==1.0.2 # via sphinx
sphinxcontrib-jsmath==1.0.1 # via sphinx
sphinxcontrib-qthelp==1.0.2 # via sphinx
sphinxcontrib-serializinghtml==1.1.3 # via sphinx
sqlalchemy==1.3.10
tabulate==0.8.5
tenacity==4.12.0
termcolor==1.1.0
text-unidecode==1.2
thrift==0.11.0
toml==0.10.0 # via black
tornado==5.1.1
typed-ast==1.4.0 # via black
tzlocal==1.5.1
unicodecsv==0.14.1
urllib3==1.25.6
vine==1.3.0
wcwidth==0.1.7 # via pytest
websocket-client==0.56.0
werkzeug==0.16.0
wtforms==2.2.1
zipp==0.6.0
zope.deprecation==4.4.0

# The following packages are considered to be unsafe in a requirements file:
# setuptools==41.4.0 # via jsonschema, python-daemon, zope.deprecation
# setuptools==42.0.0 # via jsonschema, python-daemon, sphinx, zope.deprecation
2 changes: 0 additions & 2 deletions deps/docs-requirements.in

This file was deleted.

124 changes: 0 additions & 124 deletions deps/docs-requirements.txt

This file was deleted.

3 changes: 0 additions & 3 deletions deps/linting-requirements.in

This file was deleted.

Loading