Skip to content

Commit 46fb024

Browse files
committed
housekeeping
1 parent 33301b6 commit 46fb024

5 files changed

Lines changed: 8 additions & 2 deletions

File tree

.build/install_castxml.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ else
1313
fi
1414
make
1515
# export PATH="$(pwd)/bin:${PATH}"
16+
mkdir -p "${HOME}/.local/bin"
1617
ln -s "$(pwd)/bin/castxml" "${HOME}/.local/bin/castxml"
1718
cd -

.build/install_open_fortran_compiler.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ else
1313
CFLAGS="-Wno-implicit-fallthrough -Wno-maybe-uninitialized" make
1414
fi
1515
# export PATH="$(pwd):${PATH}"
16+
mkdir -p "${HOME}/.local/bin"
1617
ln -s "$(pwd)/ofc" "${HOME}/.local/bin/ofc"
1718
cd -

.build/install_pyenv.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ if [[ "$(uname)" == "Darwin" ]]; then
1616
fi
1717
pyenv install "${TRAVIS_PYTHON_VERSION}"
1818
# export PATH="${HOME}/.pyenv/versions/${TRAVIS_PYTHON_VERSION}/bin:${PATH}"
19+
mkdir -p "${HOME}/.local/bin"
1920
ln -s "${HOME}/.pyenv/versions/${TRAVIS_PYTHON_VERSION}/bin/python" "${HOME}/.local/bin/python"
2021
ln -s "${HOME}/.pyenv/versions/${TRAVIS_PYTHON_VERSION}/bin/pip" "${HOME}/.local/bin/pip"
2122
ln -s "${HOME}/.pyenv/versions/${TRAVIS_PYTHON_VERSION}/bin/coverage" "${HOME}/.local/bin/coverage"

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ env:
4747
- TRAVIS_JDK_VERSION=oraclejdk9
4848

4949
before_install:
50-
- mkdir -p "${HOME}/.local/bin"
5150
- |
5251
set -e
5352
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then

README.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,11 +308,15 @@ First, download and run the docker container (migth require sudo):
308308
docker pull "mbdevpl/transpyle"
309309
docker run -h transmachine -it "mbdevpl/transpyle"
310310
311+
312+
By default, this will download latest more or less stable development build,
313+
if you wish to use a specific release, use :bash:`"mbdevpl/transpyle:version"` instead.
314+
311315
Then, in the container:
312316

313317
.. code:: bash
314318
315-
python3 -m jupyter notebok --ip="$(hostname -i)" --port=8080
319+
python3 -m jupyter notebook --ip="$(hostname -i)" --port=8080
316320
317321
Open the shown link in your host's web browser, navigate to `<examples.ipynb>`_,
318322
and start transpiling!

0 commit comments

Comments
 (0)