dataflow-conda-plugin 0.1.7rc1__tar.gz → 0.1.7rc2__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 dataflow-conda-plugin might be problematic. Click here for more details.

@@ -1,3 +1,3 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dataflow-conda-plugin
3
- Version: 0.1.7rc1
3
+ Version: 0.1.7rc2
@@ -1,3 +1,3 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dataflow-conda-plugin
3
- Version: 0.1.7rc1
3
+ Version: 0.1.7rc2
@@ -77,6 +77,7 @@ def install_deps(command: str):
77
77
  print(f"Error in creating environment!!")
78
78
  if should_save_to_db and env_name:
79
79
  save_environment(env_name, "Failed")
80
+ raise RuntimeError(f"Dataflow dependency installation failed! Please make sure compatible python version is used")
80
81
  else:
81
82
  if env_name and should_save_to_db:
82
83
  save_environment(env_name, "Success")
@@ -86,6 +87,7 @@ def install_deps(command: str):
86
87
  logger.error(f"Error installing dependencies: {str(e)}")
87
88
  if should_save_to_db and env_name:
88
89
  save_environment(env_name, "Failed")
90
+ raise e
89
91
 
90
92
  def remove_environment(env_name: str):
91
93
  """Remove environment information via API."""
@@ -4,7 +4,7 @@ conda_env_path=$1
4
4
 
5
5
  py_version=$(${conda_env_path}/bin/python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
6
6
 
7
- ${conda_env_path}/bin/pip install dash==3.0.3 dash-renderer==1.9.1 plotly==6.0.1 typing==3.7.4.3 streamlit==1.45.1 ipython==9.2.0 ipykernel==6.29.5 ipython-sql==0.4.1 jupysql==0.10.14 psycopg2-binary==2.9.10 cryptography==44.0.3 dataflow-core==2.1.14rc1 dataflow-dbt==0.0.3
7
+ ${conda_env_path}/bin/pip install dash==3.0.3 dash-renderer==1.9.1 plotly==6.0.1 typing==3.7.4.3 streamlit==1.45.1 ipython==9.2.0 ipykernel==6.29.5 ipython-sql==0.4.1 jupysql==0.10.14 psycopg2-binary==2.9.10 cryptography==44.0.3 dataflow-core==2.1.15rc2 dataflow-dbt==0.0.3
8
8
 
9
9
  # 3. Install Dataflow Airflow to a separate path in environment
10
10
  ${conda_env_path}/bin/pip install \
@@ -14,7 +14,7 @@ class PostInstall(install):
14
14
 
15
15
  setup(
16
16
  name="dataflow-conda-plugin",
17
- version="0.1.7rc1",
17
+ version="0.1.7rc2",
18
18
  entry_points={"conda": ["dataflow-conda-plugin = plugin.plugin"]},
19
19
  packages=find_packages(include=["plugin"]),
20
20
  package_data={'plugin': ['scripts/*.sh']},