tundri 1.3.1__tar.gz → 1.3.2__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.
Potentially problematic release.
This version of tundri might be problematic. Click here for more details.
- {tundri-1.3.1 → tundri-1.3.2}/.github/workflows/pr-tests.yml +2 -2
- {tundri-1.3.1 → tundri-1.3.2}/PKG-INFO +2 -2
- {tundri-1.3.1 → tundri-1.3.2}/README.md +1 -1
- {tundri-1.3.1 → tundri-1.3.2}/pyproject.toml +1 -1
- {tundri-1.3.1 → tundri-1.3.2}/.github/pull_request_template.md +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/.github/workflows/manual-release.yml +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/.github/workflows/on-release-merge.yml +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/.github/workflows/publish-on-release.yml +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/.github/workflows/publish-to-testpypi.yml +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/.gitignore +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/.python-version +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/docs/RELEASE_WORKFLOW.md +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/docs/images/logo.jpg +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/docs/images/run_example.png +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/examples/permifrost.yml +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/examples/permifrost_with_bob.yml +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/examples/permifrost_without_bob.yml +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/pytest.ini +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tests/conftest.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tests/data/correct_required_params_spec.yml +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tests/data/incorrect_required_params_spec.yml +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tests/data/uppercase_meta_params_spec.yml +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tests/integration_tests/test_connection.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tests/integration_tests/test_ddl.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tests/test_core.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tests/test_parser.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tests/test_utils.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tundri/__init__.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tundri/cli.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tundri/constants.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tundri/core.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tundri/inspector.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tundri/objects.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tundri/parser.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/tundri/utils.py +0 -0
- {tundri-1.3.1 → tundri-1.3.2}/uv.lock +0 -0
|
@@ -32,12 +32,12 @@ jobs:
|
|
|
32
32
|
with:
|
|
33
33
|
version: "latest"
|
|
34
34
|
|
|
35
|
-
#
|
|
35
|
+
# tundri currently only supports connecting to Snowflake by providing
|
|
36
36
|
# the path to the user's private key, so we need to dump the key somewhere in
|
|
37
37
|
# the Ubuntu environment. While connecting via password is also possible, we are
|
|
38
38
|
# opting for key-pair to be future-proof
|
|
39
39
|
#
|
|
40
|
-
# TODO: extend
|
|
40
|
+
# TODO: extend get_snowflake_cursor() function to allow
|
|
41
41
|
# passing raw keys, so we can avoid exposing the private key
|
|
42
42
|
- name: Create folder for private key
|
|
43
43
|
run: mkdir -p ./.ssh
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tundri
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: Drop, create and alter Snowflake objects and set permissions with Permifrost
|
|
5
5
|
Project-URL: Homepage, https://github.com/Gemma-Analytics/tundri
|
|
6
6
|
Project-URL: Repository, https://github.com/Gemma-Analytics/tundri
|
|
@@ -26,7 +26,7 @@ Requires-Dist: snowflake-connector-python
|
|
|
26
26
|
Description-Content-Type: text/markdown
|
|
27
27
|
|
|
28
28
|
<div align="center">
|
|
29
|
-
<img src="docs/images/logo.jpg" alt="
|
|
29
|
+
<img src="docs/images/logo.jpg" alt="tundri Logo" width="200">
|
|
30
30
|
</div>
|
|
31
31
|
|
|
32
32
|
**tundri** is a Python package to declaratively create, drop, and alter Snowflake objects and manage their permissions with [Permifrost](https://gitlab.com/gitlab-data/permifrost).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="docs/images/logo.jpg" alt="
|
|
2
|
+
<img src="docs/images/logo.jpg" alt="tundri Logo" width="200">
|
|
3
3
|
</div>
|
|
4
4
|
|
|
5
5
|
**tundri** is a Python package to declaratively create, drop, and alter Snowflake objects and manage their permissions with [Permifrost](https://gitlab.com/gitlab-data/permifrost).
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|