Skip to content

Commit e86a0d0

Browse files
committed
Add deps
1 parent 7e7f06b commit e86a0d0

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

dev-requirements.txt

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@
55
# pip-compile --no-annotate dev-requirements.in
66
#
77
-e file:.
8+
about-time==4.2.1
89
aiohttp==3.8.3
910
aiosignal==1.2.0
11+
alive-progress==3.2.0
12+
anyio==4.9.0
1013
appdirs==1.4.4
1114
astroid==2.12.12
1215
async-timeout==4.0.2
@@ -19,24 +22,31 @@ cfgv==3.3.1
1922
charset-normalizer==2.0.12
2023
click==8.1.2
2124
codespell==2.1.0
22-
commonmark==0.9.1
2325
coverage[toml]==6.4.3
2426
cython==0.29.32
27+
datajunction==0.0.1a102
2528
dill==0.3.6
2629
distlib==0.3.5
30+
execnet==2.1.1
2731
filelock==3.8.0
2832
freezegun==1.2.2
2933
frozenlist==1.3.1
34+
grapheme==0.6.0
3035
greenlet==1.1.3.post0
36+
h11==0.16.0
37+
httpcore==1.0.9
38+
httpx==0.28.1
3139
identify==2.5.3
3240
idna==3.3
3341
iniconfig==1.1.1
3442
isort==5.10.1
3543
jinja2==3.1.2
3644
lazy-object-proxy==1.8.0
45+
markdown-it-py==3.0.0
3746
markupsafe==2.1.1
3847
marshmallow==3.17.0
3948
mccabe==0.7.0
49+
mdurl==0.1.2
4050
multidict==6.0.2
4151
nodeenv==1.7.0
4252
numpy==1.23.1
@@ -51,28 +61,30 @@ prison==0.2.1
5161
prompt-toolkit==3.0.30
5262
py==1.11.0
5363
pyfakefs==4.6.3
54-
pygments==2.12.0
64+
pygments==2.19.1
5565
pylint==2.15.5
5666
pyparsing==3.0.9
5767
pytest==7.1.2
5868
pytest-cov==3.0.0
5969
pytest-mock==3.8.2
70+
pytest-xdist==3.7.0
6071
python-dateutil==2.8.2
6172
python-graphql-client==0.4.3
6273
pytz==2022.2
63-
pyyaml==6.0
64-
requests==2.27.1
74+
pyyaml==6.0.2
75+
requests==2.32.4
6576
requests-mock==1.9.3
66-
rich==12.5.1
77+
rich==14.0.0
6778
six==1.16.0
79+
sniffio==1.3.1
6880
soupsieve==2.3.2.post1
6981
sqlalchemy==1.4.40
7082
sqlglot==26.23.0
7183
tabulate==0.8.10
7284
toml==0.10.2
7385
tomli==2.0.1
7486
tomlkit==0.11.6
75-
typing-extensions==4.3.0
87+
typing-extensions==4.14.0
7688
urllib3==1.26.9
7789
virtualenv==20.16.3
7890
wcwidth==0.2.5

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ testing =
100100
pre-commit
101101
pip-tools>=6.6.0
102102
pylint==2.15.5
103+
datajunction; python_version >= "3.9"
103104

104105
[options.entry_points]
105106
# Add here console scripts like:

src/preset_cli/cli/superset/sync/dj/lib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
import json
6-
from typing import Any
6+
from typing import Any, Optional
77
from uuid import UUID
88

99
from datajunction import DJClient
@@ -19,7 +19,7 @@ def sync_cube( # pylint: disable=too-many-arguments
1919
dj_client: DJClient,
2020
superset_client: SupersetClient,
2121
cube: str,
22-
base_url: URL | None,
22+
base_url: Optional[URL],
2323
) -> None:
2424
"""
2525
Sync a DJ cube to a Superset virtual dataset.

0 commit comments

Comments
 (0)