sws-spark-dissemination-helper 0.0.120__tar.gz → 0.0.122__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 (16) hide show
  1. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/PKG-INFO +2 -2
  2. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/pyproject.toml +2 -2
  3. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/src/sws_spark_dissemination_helper/utils.py +4 -6
  4. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/.gitignore +0 -0
  5. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/LICENSE +0 -0
  6. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/README.md +0 -0
  7. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/old_requirements.txt +0 -0
  8. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/requirements.txt +0 -0
  9. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/src/sws_spark_dissemination_helper/SWSBronzeIcebergSparkHelper.py +0 -0
  10. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/src/sws_spark_dissemination_helper/SWSGoldIcebergSparkHelper.py +0 -0
  11. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/src/sws_spark_dissemination_helper/SWSPostgresSparkReader.py +0 -0
  12. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/src/sws_spark_dissemination_helper/SWSSilverIcebergSparkHelper.py +0 -0
  13. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/src/sws_spark_dissemination_helper/__init__.py +0 -0
  14. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/src/sws_spark_dissemination_helper/constants.py +0 -0
  15. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/tests/__init__.py +0 -0
  16. {sws_spark_dissemination_helper-0.0.120 → sws_spark_dissemination_helper-0.0.122}/tests/test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sws-spark-dissemination-helper
3
- Version: 0.0.120
3
+ Version: 0.0.122
4
4
  Summary: A Python helper package providing streamlined Spark functions for efficient data dissemination processes
5
5
  Project-URL: Repository, https://bitbucket.org/cioapps/sws-it-python-spark-dissemination-helper
6
6
  Author-email: Daniele Mansillo <danielemansillo@gmail.com>
@@ -49,7 +49,7 @@ Requires-Dist: pytz==2025.1
49
49
  Requires-Dist: requests==2.32.3
50
50
  Requires-Dist: s3transfer==0.11.2
51
51
  Requires-Dist: six==1.17.0
52
- Requires-Dist: sws-api-client>=1.5.0
52
+ Requires-Dist: sws-api-client>=1.5.1
53
53
  Requires-Dist: typing-extensions==4.12.2
54
54
  Requires-Dist: tzdata==2025.1
55
55
  Requires-Dist: urllib3==1.26.20
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "sws-spark-dissemination-helper"
7
- version = "0.0.120"
7
+ version = "0.0.122"
8
8
  dependencies = [
9
9
  "annotated-types==0.7.0",
10
10
  "boto3==1.36.18",
@@ -25,7 +25,7 @@ dependencies = [
25
25
  "requests==2.32.3",
26
26
  "s3transfer==0.11.2",
27
27
  "six==1.17.0",
28
- "sws_api_client>=1.5.0",
28
+ "sws_api_client>=1.5.1",
29
29
  "typing_extensions==4.12.2",
30
30
  "tzdata==2025.1",
31
31
  "urllib3==1.26.20"
@@ -384,12 +384,10 @@ def map_codes_and_remove_null_duplicates(
384
384
  F.array_append(
385
385
  col("note"),
386
386
  F.concat(
387
- lit(
388
- f"Dimension {col_name} code was changed from ",
389
- col(col_name),
390
- lit(" to "),
391
- col("new_dim_code"),
392
- )
387
+ lit(f"Dimension {col_name} code was changed from "),
388
+ col(col_name),
389
+ lit(" to "),
390
+ col("new_dim_code"),
393
391
  ),
394
392
  ),
395
393
  ).otherwise(col("note")),