Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Environment create fix for 0.19 #227

Merged
merged 2 commits into from May 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions create_eagle_env.sh 100644 → 100755
Expand Up @@ -26,12 +26,13 @@ MY_CONDA_PREFIX="$CONDA_ENVS_DIR/$MY_CONDA_ENV_NAME"
echo "Creating $MY_CONDA_PREFIX"
module load conda
conda remove -y --prefix "$MY_CONDA_PREFIX" --all
conda create -y --prefix "$MY_CONDA_PREFIX" -c conda-forge "pyarrow>=0.14" python=3.7 "pandas>=1.0.0,!=1.0.4" dask distributed ruby
conda create -y --prefix "$MY_CONDA_PREFIX" -c conda-forge "pyarrow>=3.0.0" python=3.7.8 "numpy>=1.20.0" "pandas>=1.0.0,!=1.0.4" dask distributed ruby
source deactivate
source activate "$MY_CONDA_PREFIX"
pip install --upgrade pip
which pip
if [ $DEV -eq 1 ]
then
pip install -e .
pip install --ignore-installed -e .
else
pip install .
pip install --ignore-installed .
fi
14 changes: 14 additions & 0 deletions docs/changelog/changelog_0_19_2.rst
@@ -0,0 +1,14 @@
================
0.19.2 Changelog
================

.. changelog::
:version: 0.19.2
:released: May 3, 2021

.. change::
:tags: general, eagle
:pullreq: 227
:tickets:

Fix for create_eagle_env.sh not creating environment.
1 change: 1 addition & 0 deletions docs/changelog/index.rst
Expand Up @@ -19,6 +19,7 @@ Change logs
.. toctree::
:titlesonly:

changelog_0_19_2
changelog_0_19_1
changelog_0_19
changelog_0_18
Expand Down