dataflow-core 2.1.16__tar.gz → 2.1.17__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 (68) hide show
  1. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/PKG-INFO +1 -1
  2. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/scripts/clone_environment.sh +0 -4
  3. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/scripts/create_environment.sh +4 -0
  4. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow_core.egg-info/PKG-INFO +1 -1
  5. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/setup.py +1 -1
  6. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/README.md +0 -0
  7. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/authenticator/__init__.py +0 -0
  8. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/authenticator/dataflowairflowauthenticator.py +0 -0
  9. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/authenticator/dataflowhubauthenticator.py +0 -0
  10. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/authenticator/dataflowsupersetauthenticator.py +0 -0
  11. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/__init__.py +0 -0
  12. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/configuration.py +0 -0
  13. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/database_manager.py +0 -0
  14. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/dataflow.py +0 -0
  15. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/db.py +0 -0
  16. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/environment.py +0 -0
  17. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/__init__.py +0 -0
  18. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/app_types.py +0 -0
  19. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/blacklist_library.py +0 -0
  20. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/connection.py +0 -0
  21. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/dataflow_zone.py +0 -0
  22. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/environment.py +0 -0
  23. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/environment_status.py +0 -0
  24. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/git_ssh.py +0 -0
  25. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/org_associations.py +0 -0
  26. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/organization.py +0 -0
  27. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/pinned_projects.py +0 -0
  28. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/pod_activity.py +0 -0
  29. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/pod_session_history.py +0 -0
  30. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/project_details.py +0 -0
  31. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/recent_project_studio.py +0 -0
  32. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/recent_projects.py +0 -0
  33. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/role.py +0 -0
  34. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/role_server.py +0 -0
  35. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/role_zone.py +0 -0
  36. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/server_config.py +0 -0
  37. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/session.py +0 -0
  38. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/team.py +0 -0
  39. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/user.py +0 -0
  40. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/user_team.py +0 -0
  41. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/models/variables.py +0 -0
  42. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/schemas/__init__.py +0 -0
  43. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/schemas/connection.py +0 -0
  44. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/schemas/git_ssh.py +0 -0
  45. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/schemas/secret.py +0 -0
  46. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/scripts/update_environment.sh +0 -0
  47. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/secrets_manager/__init__.py +0 -0
  48. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/secrets_manager/factory.py +0 -0
  49. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/secrets_manager/interface.py +0 -0
  50. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/secrets_manager/providers/__init__.py +0 -0
  51. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/secrets_manager/providers/aws_manager.py +0 -0
  52. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/secrets_manager/providers/azure_manager.py +0 -0
  53. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/secrets_manager/providers/gcp_manager.py +0 -0
  54. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/secrets_manager/service.py +0 -0
  55. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/utils/__init__.py +0 -0
  56. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/utils/exceptions.py +0 -0
  57. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/utils/get_current_user.py +0 -0
  58. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow/utils/logger.py +0 -0
  59. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow_core.egg-info/SOURCES.txt +0 -0
  60. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow_core.egg-info/dependency_links.txt +0 -0
  61. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow_core.egg-info/entry_points.txt +0 -0
  62. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow_core.egg-info/requires.txt +0 -0
  63. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dataflow_core.egg-info/top_level.txt +0 -0
  64. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dfmigration/__init__.py +0 -0
  65. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dfmigration/env.py +0 -0
  66. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dfmigration/versions/001_initial_baseline_migration.py +0 -0
  67. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/dfmigration/versions/__init__.py +0 -0
  68. {dataflow_core-2.1.16 → dataflow_core-2.1.17}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dataflow-core
3
- Version: 2.1.16
3
+ Version: 2.1.17
4
4
  Summary: Dataflow core package
5
5
  Author: Dataflow
6
6
  Author-email:
@@ -4,7 +4,6 @@ set -e
4
4
  source_env_name=$1
5
5
  target_env_path=$2
6
6
  yaml_file_path=$3
7
- py_version=$4
8
7
 
9
8
  # Extract just the env name (basename) from the target path
10
9
  env_name=$(basename "$target_env_path")
@@ -13,9 +12,6 @@ env_name=$(basename "$target_env_path")
13
12
  export CONDA_PKGS_DIRS="/dataflow/envs/cache/${env_name}"
14
13
  mkdir -p "$CONDA_PKGS_DIRS"
15
14
 
16
- export PIP_CONSTRAINT="/dataflow/setup/pip_constraints/py${py_version}-constraints.txt"
17
- export NO_CONDA_PLUGIN_PIP_CONSTRAINT="true"
18
-
19
15
  # 1. Cloning conda env
20
16
  conda create --clone ${source_env_name} --prefix ${target_env_path} --yes
21
17
 
@@ -5,6 +5,7 @@ set -e
5
5
  # Accept new parameters
6
6
  yaml_file_path=$1
7
7
  conda_env_path=$2
8
+ py_version=$3
8
9
 
9
10
  # Validate inputs
10
11
  if [ -z "$yaml_file_path" ] || [ -z "$conda_env_path" ]; then
@@ -24,6 +25,9 @@ env_name=$(basename "$conda_env_path")
24
25
  export CONDA_PKGS_DIRS="/dataflow/envs/cache/${env_name}"
25
26
  mkdir -p "$CONDA_PKGS_DIRS"
26
27
 
28
+ export PIP_CONSTRAINT="/dataflow/setup/pip_constraints/py${py_version}-constraints.txt"
29
+ export NO_CONDA_PLUGIN_PIP_CONSTRAINT="true"
30
+
27
31
  # Create the conda environment from the YAML file
28
32
  conda env create --file "$yaml_file_path" --prefix "$conda_env_path" --yes
29
33
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dataflow-core
3
- Version: 2.1.16
3
+ Version: 2.1.17
4
4
  Summary: Dataflow core package
5
5
  Author: Dataflow
6
6
  Author-email:
@@ -14,7 +14,7 @@ class PostInstall(install):
14
14
 
15
15
  setup(
16
16
  name="dataflow-core",
17
- version="2.1.16",
17
+ version="2.1.17",
18
18
  packages=find_packages(include=["dataflow", "dataflow.*", "authenticator", "authenticator.*", "dfmigration", "dfmigration.*"]),
19
19
  include_package_data=True,
20
20
  package_data={
File without changes
File without changes