dataflow-conda-plugin 0.1.0__tar.gz → 0.1.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 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.0
3
+ Version: 0.1.2
@@ -1,3 +1,3 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dataflow-conda-plugin
3
- Version: 0.1.0
3
+ Version: 0.1.2
@@ -38,5 +38,5 @@ def conda_post_commands():
38
38
  yield plugins.CondaPostCommand(
39
39
  name=f"install_deps_post_command",
40
40
  action=install_deps,
41
- run_for={"create"},
41
+ run_for={"create", "env_create"},
42
42
  )
@@ -4,12 +4,12 @@ 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 dash-renderer plotly flask flask-appbuilder typing jupyterhub oauthenticator jupyter-server-proxy jupyter streamlit ipython ipykernel ipython-sql jupysql psycopg2-binary dataflow-core dataflow-dbt
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 dataflow-dbt
8
8
 
9
9
  # 3. Install Dataflow Airflow to a separate path in environment
10
10
  ${conda_env_path}/bin/pip install \
11
11
  --force-reinstall --root-user-action ignore \
12
- --no-warn-conflicts dataflow-airflow==2.10.5 \
12
+ --no-warn-conflicts dataflow-airflow \
13
13
  --target ${conda_env_path}/bin/airflow-libraries/
14
14
 
15
15
  files=(
@@ -14,7 +14,7 @@ class PostInstall(install):
14
14
 
15
15
  setup(
16
16
  name="dataflow-conda-plugin",
17
- version="0.1.0",
17
+ version="0.1.2",
18
18
  entry_points={"conda": ["dataflow-conda-plugin = plugin.plugin"]},
19
19
  packages=find_packages(include=["plugin"]),
20
20
  package_data={'plugin': ['scripts/*.sh']},