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

Move flake8-related packages deps to reqs-dev.txt #5460

Merged
merged 6 commits into from
Jul 23, 2018
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
13 changes: 10 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
console_log==0.2.10
flake8-coding==1.3.0
flake8-commas==2.0.0
flake8-future-import==0.4.5
flake8-import-order==0.18
flake8-quotes==1.0.0
flake8==3.5.0
flask-cors==3.0.3
ipdb==0.11
mysqlclient==1.3.12
psycopg2==2.7.4
psycopg2-binary==2.7.5
pycodestyle==2.3.1
pylint==1.9.2
redis==2.10.6
statsd==3.2.2
tox==3.1.2
console_log==0.2.10
pylint==1.9.2
22 changes: 22 additions & 0 deletions superset/migrations/versions/46ba6aaaac97_.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""empty message
Revision ID: 46ba6aaaac97
Revises: ('705732c70154', 'e3970889f38e')
Create Date: 2018-07-23 11:20:54.929246
"""

# revision identifiers, used by Alembic.
revision = '46ba6aaaac97'
down_revision = ('705732c70154', 'e3970889f38e')

from alembic import op
import sqlalchemy as sa


def upgrade():
pass


def downgrade():
pass
22 changes: 22 additions & 0 deletions superset/migrations/versions/e3970889f38e_.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""empty message

Revision ID: e3970889f38e
Revises: ('4451805bbaa1', '1d9e835a84f9')
Create Date: 2018-07-22 09:32:36.986561

"""

# revision identifiers, used by Alembic.
revision = 'e3970889f38e'
down_revision = ('4451805bbaa1', '1d9e835a84f9')

from alembic import op
import sqlalchemy as sa


def upgrade():
pass


def downgrade():
pass
9 changes: 2 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,9 @@ deps =

[testenv:flake8]
commands =
flake8
flake8 {toxinidir}/
deps =
flake8
flake8-coding
flake8-commas
flake8-future-import
flake8-import-order
flake8-quotes
-rrequirements-dev.txt

[testenv:javascript]
commands =
Expand Down