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

Pin conflicting versions #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
1 change: 0 additions & 1 deletion hq_superset/tests/config_for_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@

superset_config.SQLALCHEMY_DATABASE_URI = "sqlite:///:memory:"
superset_config.SHARED_DIR = "shared_dir"
superset_config.ENABLE_ASYNC_UCR_IMPORTS = True
superset_config.CACHE_CONFIG = {
'CACHE_TYPE': 'RedisCache',
'CACHE_DEFAULT_TIMEOUT': 300,
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@
# Werkzeug 2.1 doesn't work, so pin it
'Werkzeug==2.0.0',
'jinja2==3.0.3',
'celery==5.2.7',
'sqlparse==0.4.3',
'pyopenssl==22.1.0',
'dimagi-superset==2.0.1',
'authlib==1.0.1',
'requests==2.28.1',
'psycopg2==2.9.3',
'WTForms==2.3.3',
'cryptography==37.0.4',
'sentry-sdk==1.9.10',
'celery==5.2.7',
],
classifiers=[
'Programming Language :: Python',
Expand Down
4 changes: 0 additions & 4 deletions superset_config.example.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@
# This is where async UCR imports are stored temporarily
SHARED_DIR = 'shared_dir'

# If this is enabled, UCRs larger than
# hq_superset.views.ASYNC_DATASOURCE_IMPORT_LIMIT_IN_BYTES
# are imported via Celery/Redis.
ENABLE_ASYNC_UCR_IMPORTS = False

# Enable below for sentry integration
import sentry_sdk
Expand Down