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

Move environment YAML file and requirements.txt to new envs/ sub-directory #116

Merged
merged 3 commits into from
Dec 23, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SalishSeaTools/docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ and building the documentation with the commands:
.. code-block:: bash

$ cd tools
$ conda env create -f SalishSeaTools/environment.yaml
$ conda env create -f SalishSeaTools/envs/environment-dev.yaml
$ conda activate salishsea-tools
(salishsea-tools)$ pip install --editable SalishSeaTools

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
# of the SalishSeaTools package with:
#
# $ cd tools
# $ conda env create -f SalishSeaTools/environment.yaml
# $ conda env create -f SalishSeaTools/envs/environment-dev.yaml
# $ conda activate salishsea-tools
# (salishsea-tools)$ python -m pip install --editable SalishSeaTools
#
# See the requirements.txt file for an exhaustive list of all of the
# See the envs/requirements.txt file for an exhaustive list of all the
# packages installed in the environment and their versions used in
# recent development.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Python packages and version used in development environment
#
# This list is intended to be for reference only.
# Use the conda environment description file (environment.yaml)
# Use the conda environment description file (envs/environment-dev.yaml)
# to create an isolated development environment.
#
# Create/update this file with:
# (salishsea-tools)$ python -m pip list --format=freeze >> SalishSeaTools/requirements.txt
# (salishsea-tools)$ python -m pip list --format=freeze >> SalishSeaTools/envs/requirements.txt

alabaster==1.0.0
angles==2.0
Expand Down
2 changes: 1 addition & 1 deletion SalishSeaTools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
except IOError:
long_description = ''
install_requires = [
# see requirements.txt for versions most recently used in development
# see envs/requirements.txt for versions most recently used in development
'angles',
'arrow>=1.0.0',
'bottleneck',
Expand Down
Loading