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.

Files changed (36) hide show
  1. {tundri-1.3.1 → tundri-1.3.2}/.github/workflows/pr-tests.yml +2 -2
  2. {tundri-1.3.1 → tundri-1.3.2}/PKG-INFO +2 -2
  3. {tundri-1.3.1 → tundri-1.3.2}/README.md +1 -1
  4. {tundri-1.3.1 → tundri-1.3.2}/pyproject.toml +1 -1
  5. {tundri-1.3.1 → tundri-1.3.2}/.github/pull_request_template.md +0 -0
  6. {tundri-1.3.1 → tundri-1.3.2}/.github/workflows/manual-release.yml +0 -0
  7. {tundri-1.3.1 → tundri-1.3.2}/.github/workflows/on-release-merge.yml +0 -0
  8. {tundri-1.3.1 → tundri-1.3.2}/.github/workflows/publish-on-release.yml +0 -0
  9. {tundri-1.3.1 → tundri-1.3.2}/.github/workflows/publish-to-testpypi.yml +0 -0
  10. {tundri-1.3.1 → tundri-1.3.2}/.gitignore +0 -0
  11. {tundri-1.3.1 → tundri-1.3.2}/.python-version +0 -0
  12. {tundri-1.3.1 → tundri-1.3.2}/docs/RELEASE_WORKFLOW.md +0 -0
  13. {tundri-1.3.1 → tundri-1.3.2}/docs/images/logo.jpg +0 -0
  14. {tundri-1.3.1 → tundri-1.3.2}/docs/images/run_example.png +0 -0
  15. {tundri-1.3.1 → tundri-1.3.2}/examples/permifrost.yml +0 -0
  16. {tundri-1.3.1 → tundri-1.3.2}/examples/permifrost_with_bob.yml +0 -0
  17. {tundri-1.3.1 → tundri-1.3.2}/examples/permifrost_without_bob.yml +0 -0
  18. {tundri-1.3.1 → tundri-1.3.2}/pytest.ini +0 -0
  19. {tundri-1.3.1 → tundri-1.3.2}/tests/conftest.py +0 -0
  20. {tundri-1.3.1 → tundri-1.3.2}/tests/data/correct_required_params_spec.yml +0 -0
  21. {tundri-1.3.1 → tundri-1.3.2}/tests/data/incorrect_required_params_spec.yml +0 -0
  22. {tundri-1.3.1 → tundri-1.3.2}/tests/data/uppercase_meta_params_spec.yml +0 -0
  23. {tundri-1.3.1 → tundri-1.3.2}/tests/integration_tests/test_connection.py +0 -0
  24. {tundri-1.3.1 → tundri-1.3.2}/tests/integration_tests/test_ddl.py +0 -0
  25. {tundri-1.3.1 → tundri-1.3.2}/tests/test_core.py +0 -0
  26. {tundri-1.3.1 → tundri-1.3.2}/tests/test_parser.py +0 -0
  27. {tundri-1.3.1 → tundri-1.3.2}/tests/test_utils.py +0 -0
  28. {tundri-1.3.1 → tundri-1.3.2}/tundri/__init__.py +0 -0
  29. {tundri-1.3.1 → tundri-1.3.2}/tundri/cli.py +0 -0
  30. {tundri-1.3.1 → tundri-1.3.2}/tundri/constants.py +0 -0
  31. {tundri-1.3.1 → tundri-1.3.2}/tundri/core.py +0 -0
  32. {tundri-1.3.1 → tundri-1.3.2}/tundri/inspector.py +0 -0
  33. {tundri-1.3.1 → tundri-1.3.2}/tundri/objects.py +0 -0
  34. {tundri-1.3.1 → tundri-1.3.2}/tundri/parser.py +0 -0
  35. {tundri-1.3.1 → tundri-1.3.2}/tundri/utils.py +0 -0
  36. {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
- # snowflake-manager currently only supports connecting to Snowflake by providing
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 snowflake-manager's get_snowflake_cursor() function to allow
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.1
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="Snowflake Manager Logo" width="200">
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="Snowflake Manager Logo" width="200">
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).
@@ -7,7 +7,7 @@ allow-direct-references = true
7
7
 
8
8
  [project]
9
9
  name = "tundri"
10
- version = "1.3.1"
10
+ version = "1.3.2"
11
11
  description = "Drop, create and alter Snowflake objects and set permissions with Permifrost"
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.8"
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