snowpark-checkpoints-configuration 0.3.2__tar.gz → 0.4.0__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.
Files changed (23) hide show
  1. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/PKG-INFO +1 -1
  2. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/pyproject.toml +1 -1
  3. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/src/snowflake/snowpark_checkpoints_configuration/__version__.py +1 -1
  4. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/.gitignore +0 -0
  5. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/LICENSE +0 -0
  6. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/README.md +0 -0
  7. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/src/snowflake/snowpark_checkpoints_configuration/__init__.py +0 -0
  8. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/src/snowflake/snowpark_checkpoints_configuration/checkpoint_metadata.py +0 -0
  9. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/src/snowflake/snowpark_checkpoints_configuration/checkpoint_name_utils.py +0 -0
  10. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/src/snowflake/snowpark_checkpoints_configuration/io_utils/__init__.py +0 -0
  11. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/src/snowflake/snowpark_checkpoints_configuration/io_utils/io_default_strategy.py +0 -0
  12. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/src/snowflake/snowpark_checkpoints_configuration/io_utils/io_env_strategy.py +0 -0
  13. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/src/snowflake/snowpark_checkpoints_configuration/io_utils/io_file_manager.py +0 -0
  14. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/src/snowflake/snowpark_checkpoints_configuration/model/checkpoints.py +0 -0
  15. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/src/snowflake/snowpark_checkpoints_configuration/singleton.py +0 -0
  16. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/test/.coveragerc +0 -0
  17. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/test/unit/invalid_checkpoint/checkpoints.json +0 -0
  18. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/test/unit/io_utils/test_default_strategy.py +0 -0
  19. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/test/unit/test_checkpoint_metadata.py +0 -0
  20. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/test/unit/test_checkpoint_name_utils.py +0 -0
  21. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/test/unit/test_checkpoints.py +0 -0
  22. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/test/unit/test_logger.py +0 -0
  23. {snowpark_checkpoints_configuration-0.3.2 → snowpark_checkpoints_configuration-0.4.0}/test/unit/valid_checkpoint/checkpoints.json +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: snowpark-checkpoints-configuration
3
- Version: 0.3.2
3
+ Version: 0.4.0
4
4
  Summary: Migration tools for Snowpark
5
5
  Project-URL: Bug Tracker, https://github.com/snowflakedb/snowpark-checkpoints/issues
6
6
  Project-URL: Source code, https://github.com/snowflakedb/snowpark-checkpoints/
@@ -120,7 +120,7 @@ exclude_lines = [
120
120
 
121
121
  [tool.hatch.envs.linter.scripts]
122
122
  check = [
123
- 'ruff check --fix .',
123
+ "echo 'Running linting checks...' && ruff check --config=../ruff.toml --statistics --verbose . || (echo '❌ LINTING FAILED: Please fix the above linting issues before proceeding. Use \"ruff check --config=../ruff.toml --fix .\" to auto-fix some issues, or fix them manually.' && exit 1)",
124
124
  ]
125
125
 
126
126
  [tool.hatch.envs.test.scripts]
@@ -13,4 +13,4 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
 
16
- __version__ = "0.3.2"
16
+ __version__ = "0.4.0"