Skip to content

Commit e7ee3f0

Browse files
authored
remove pubusb-code and introduce dapla-toolbelt-automation (#207)
1 parent 1408f15 commit e7ee3f0

File tree

5 files changed

+47
-371
lines changed

5 files changed

+47
-371
lines changed

poetry.lock

Lines changed: 41 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dapla-toolbelt"
3-
version = "4.0.1"
3+
version = "4.1.0"
44
description = "Dapla Toolbelt"
55
authors = ["Dapla Developers <dapla-platform-developers@ssb.no>"]
66
license = "MIT"
@@ -23,12 +23,12 @@ gcsfs = ">=2022.7.1"
2323
google-cloud-storage = ">=2.7.0"
2424
pyjwt = ">=2.6.0"
2525
tomli = ">=1.1.0"
26-
google-cloud-pubsub = ">=2.14.1"
2726
fsspec = ">=2023.12.2"
2827
google-cloud-secret-manager = ">=2.21.0"
2928
dapla-auth-client = ">=1.0.1"
3029
deprecated = "^1.2.18"
3130
types-deprecated = "^1.2.15.20250304"
31+
dapla-toolbelt-automation = ">=1.0.0"
3232

3333
[tool.poetry.group.dev.dependencies]
3434
pygments = ">=2.10.0"

src/dapla/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
# and also is importable with `from dapla import AuthClient`
1212
from dapla_auth_client import AuthClient
1313

14+
# Importing trigger_source_data_processing here so its exposed from dapla-toolbelt
15+
# and also is importable with `from dapla import trigger_source_data_processing`
16+
from dapla_toolbelt_automation import trigger_source_data_processing
17+
1418
from .backports import details
1519
from .backports import show
1620
from .collector import CollectorClient
@@ -22,7 +26,6 @@
2226
from .guardian import GuardianClient
2327
from .pandas import read_pandas
2428
from .pandas import write_pandas
25-
from .pubsub import trigger_source_data_processing
2629

2730
__all__ = [
2831
"AuthClient",

0 commit comments

Comments
 (0)