Skip to content

Commit

Permalink
Merge pull request #227 from NREL/env_create_fix_0_19
Browse files Browse the repository at this point in the history
Environment create fix for 0.19
  • Loading branch information
nmerket committed May 14, 2021
2 parents 250fd08 + 466326d commit 2c12f7e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
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

0 comments on commit 2c12f7e

Please sign in to comment.