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.
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/PKG-INFO +1 -1
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/dataflow_conda_plugin.egg-info/PKG-INFO +1 -1
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/plugin/plugin.py +1 -1
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/plugin/scripts/install_dataflow_deps.sh +2 -2
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/setup.py +1 -1
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/README.md +0 -0
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/dataflow_conda_plugin.egg-info/SOURCES.txt +0 -0
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/dataflow_conda_plugin.egg-info/dependency_links.txt +0 -0
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/dataflow_conda_plugin.egg-info/entry_points.txt +0 -0
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/dataflow_conda_plugin.egg-info/top_level.txt +0 -0
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/plugin/__init__.py +0 -0
- {dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/setup.cfg +0 -0
{dataflow_conda_plugin-0.1.0 → dataflow_conda_plugin-0.1.2}/plugin/scripts/install_dataflow_deps.sh
RENAMED
|
@@ -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
|
|
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
|
|
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.
|
|
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']},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|