dbt-copilot-python 0.2.2__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/PKG-INFO +8 -7
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/pyproject.toml +6 -6
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/LICENSE +0 -0
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/README.md +0 -0
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/dbt_copilot_python/__init__.py +0 -0
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/dbt_copilot_python/celery_health_check/__init__.py +0 -0
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/dbt_copilot_python/celery_health_check/const.py +0 -0
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/dbt_copilot_python/celery_health_check/healthcheck.py +0 -0
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/dbt_copilot_python/celery_health_check/heartbeat.py +0 -0
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/dbt_copilot_python/database.py +0 -0
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/dbt_copilot_python/network.py +0 -0
- {dbt_copilot_python-0.2.2 → dbt_copilot_python-0.2.3}/dbt_copilot_python/utility.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: dbt-copilot-python
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: Helper functions to run Django and Flask applications in AWS Copilot/ECS.
|
|
5
5
|
Author: Department for Business and Trade Platform Team
|
|
6
6
|
Author-email: sre-team@digital.trade.gov.uk
|
|
@@ -10,13 +10,14 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
14
|
Requires-Dist: celery (>=5.3.6,<6.0.0)
|
|
14
|
-
Requires-Dist: opentelemetry-distro (==0.
|
|
15
|
-
Requires-Dist: opentelemetry-exporter-otlp (==1.
|
|
16
|
-
Requires-Dist: opentelemetry-instrumentation-wsgi (==0.
|
|
17
|
-
Requires-Dist: opentelemetry-propagator-aws-xray (>=1.0.
|
|
15
|
+
Requires-Dist: opentelemetry-distro (==0.51b0)
|
|
16
|
+
Requires-Dist: opentelemetry-exporter-otlp (==1.30.0)
|
|
17
|
+
Requires-Dist: opentelemetry-instrumentation-wsgi (==0.51b0)
|
|
18
|
+
Requires-Dist: opentelemetry-propagator-aws-xray (>=1.0.2,<2.0.0)
|
|
18
19
|
Requires-Dist: opentelemetry-sdk-extension-aws (>=2.0.1,<3.0.0)
|
|
19
|
-
Requires-Dist: requests (>=2.
|
|
20
|
+
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
|
20
21
|
Description-Content-Type: text/markdown
|
|
21
22
|
|
|
22
23
|
# DBT Copilot Python
|
|
@@ -3,7 +3,7 @@ line-length = 100
|
|
|
3
3
|
|
|
4
4
|
[tool.poetry]
|
|
5
5
|
name = "dbt-copilot-python"
|
|
6
|
-
version = "0.2.
|
|
6
|
+
version = "0.2.3"
|
|
7
7
|
description = "Helper functions to run Django and Flask applications in AWS Copilot/ECS."
|
|
8
8
|
authors = ["Department for Business and Trade Platform Team <sre-team@digital.trade.gov.uk>"]
|
|
9
9
|
readme = "README.md"
|
|
@@ -12,12 +12,12 @@ packages = [{ include = "dbt_copilot_python" }]
|
|
|
12
12
|
[tool.poetry.dependencies]
|
|
13
13
|
python = "^3.9"
|
|
14
14
|
celery = "^5.3.6"
|
|
15
|
-
opentelemetry-distro = "0.
|
|
16
|
-
opentelemetry-exporter-otlp = "1.
|
|
17
|
-
opentelemetry-instrumentation-wsgi = "0.
|
|
18
|
-
opentelemetry-propagator-aws-xray = "^1.0.
|
|
15
|
+
opentelemetry-distro = "0.51b0"
|
|
16
|
+
opentelemetry-exporter-otlp = "1.30.0"
|
|
17
|
+
opentelemetry-instrumentation-wsgi = "0.51b0"
|
|
18
|
+
opentelemetry-propagator-aws-xray = "^1.0.2"
|
|
19
19
|
opentelemetry-sdk-extension-aws = "^2.0.1"
|
|
20
|
-
requests = "^2.
|
|
20
|
+
requests = "^2.32.3"
|
|
21
21
|
|
|
22
22
|
[tool.poetry.group.dev.dependencies]
|
|
23
23
|
pre-commit = "^3.3.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|