Skip to content

Commit

Permalink
MNT #914
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Mar 20, 2024
1 parent 678cb3f commit 11995ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
echo "SRC_DIR=$(pwd)" >> ${GITHUB_ENV}
echo "TMP_DIR=$(mktemp -d)" >> ${GITHUB_ENV}
# next step also creates _version.py file
echo "VERSION=$(./setup.py --version)" >> ${GITHUB_ENV}
echo "VERSION=$(python -m setuptools_scm)" >> ${GITHUB_ENV}
- name: Show Environment variables
run: |
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Info
run: |
set -vxeuo pipefail
set -vxeuo pipefail
cd "${TMP_DIR}"
echo "pwd=$(pwd)"
ls -laFGh
Expand Down
12 changes: 2 additions & 10 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,10 @@ GitHub repository listed above::

$ git clone http://github.com/BCDA-APS/apstools.git

To install in the standard Python location::
To install from the source directory using ``pip`` in editable mode::

$ cd apstools
$ python setup.py install

To install in user's home directory::

$ python setup.py install --user

To install in an alternate location::

$ python setup.py install --prefix=/path/to/installation/dir
$ python -m pip install -e .

Required Libraries
##################
Expand Down

0 comments on commit 11995ec

Please sign in to comment.