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

Review software provision, make CI pass again #35

Merged
merged 11 commits into from
Jan 25, 2024
20 changes: 13 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
FROM debian:bullseye-slim
FROM debian:bookworm-slim

RUN apt-get update -y && apt-get install -y texlive-xetex latexmk texlive-xetex \
texlive-fonts-extra fonts-freefont-otf python3 python3-pip git zile wget
#RUN apt-get update -y && apt-get install -y texlive-xetex latexmk texlive-xetex \
# texlive-fonts-extra fonts-freefont-otf python3 python3-pip git zile wget

COPY poetry.lock pyproject.toml /opt/
RUN apt-get update -y && apt-get install -y python3 python3-pip texlive-xetex \
latexmk git zile wget texlive-fonts-extra python3-venv

RUN pip install poetry==1.1.4
COPY requirements.txt /opt/

WORKDIR /opt/
RUN poetry config virtualenvs.create false
RUN poetry install -vvv
RUN python3 -m venv venv
RUN . venv/bin/activate && pip install -r requirements.txt
RUN . venv/bin/activate && pip list
# activate venv
ENV PATH="/opt/venv/bin:$PATH"

RUN mkdir -p /io
WORKDIR /io

# Need this for one nbval and chapter 1
RUN ln -s /usr/bin/python3 /usr/local/bin/python

# supress warning when running jupyter-book in container
ENV PYDEVD_DISABLE_FILE_VALIDATION=1
CMD ["/bin/bash"]
22 changes: 7 additions & 15 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ all:
make pdf

install:
poetry install -vvv
pip install -r requirements.txt

clean:
cd book; rm -rf \
Expand All @@ -13,20 +13,20 @@ clean:
_build .ipynb_checkpoints

html:
poetry run jupyter-book build book --builder html
jupyter-book build book --builder html

linkcheck:
poetry run jupyter-book build book --builder linkcheck
jupyter-book build book --builder linkcheck

pdf: book/*-*.ipynb
poetry run jupyter-book build book --builder pdflatex
jupyter-book build book --builder pdflatex

nbval:
@echo "Testing all chapters (apart from 18) with --nbval"
poetry run pytest -v --nbval book --sanitize-with book/static/nbval_sanitize.cfg \
pytest -v --nbval book --sanitize-with book/static/nbval_sanitize.cfg \
--ignore=book/18-environments.ipynb --ignore=book/_build
@echo "Testing chapter 18 with --nbval-lax"
poetry run pytest -v --nbval-lax book/18-environments.ipynb
pytest -v --nbval-lax book/18-environments.ipynb



Expand All @@ -44,16 +44,8 @@ docker-build:
docker-build-nocache:
docker build -t python4compscience2 --no-cache .

# Here we only bind the required directories and files into the docker container
# at runtime to avoid potential conflicts with local files

define DOCKER_RUN
docker run --workdir=/io \
-v $(CURDIR)/book:/io/book \
-v $(CURDIR)/Makefile:/io/Makefile \
-v $(CURDIR)/poetry.lock:/io/poetry.lock \
-v $(CURDIR)/pyproject.toml:/io/pyproject.toml \
python4compscience
docker run --rm -v $(CURDIR):/io python4compscience
endef

docker-bash:
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ and schools. Please send a message to the author if you do so.

Hans Fangohr is a researcher and teacher (see
[homepage](https://fangohr.github.io), [blog](https://fangohr.github.io/blog),
[twitter](https://twitter.com/ProfCompMod)). His interests include effective
[mastodon](https://fosstodon.org/@ProfCompMod)). His interests include effective
software engineering for computational science and data science, researching
computational modelling and data analysis methods, and education. He is a
Professor at the [University of Southampton (UK)](https://www.southampton.ac.uk)
Expand Down
43 changes: 22 additions & 21 deletions book/12-symbolic-computation.ipynb

Large diffs are not rendered by default.

10 changes: 4 additions & 6 deletions book/14-numpy.ipynb

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions book/15-visualising-data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"For more detailed information, check these links\n",
"\n",
"- A very nice introduction in the object oriented Matplotlib interface, and summary of all important ways of changing style, figure size, linewidth, etc. This is a useful reference:\n",
" <https://nbviewer.ipython.org/github/jrjohansson/scientific-python-lectures/blob/master/Lecture-4-Matplotlib.ipynb>\n",
" <https://github.com/jrjohansson/scientific-python-lectures/blob/master/Lecture-4-Matplotlib.ipynb>\n",
"\n",
"- [Matplotlib tutorial](https://matplotlib.org/stable/tutorials/index)\n",
"\n",
Expand All @@ -46,7 +46,7 @@
"\n",
"This chapter focusses on the Pylab interface, but also provides examples for the object-oriented `matplotlib.pyplot` interface.\n",
"\n",
"An excellent introduction and overview of the `matplotlib.pyplot` plotting interface is available in <https://nbviewer.ipython.org/github/jrjohansson/scientific-python-lectures/blob/master/Lecture-4-Matplotlib.ipynb>."
"An excellent introduction and overview of the `matplotlib.pyplot` plotting interface is available in <https://github.com/jrjohansson/scientific-python-lectures/blob/master/Lecture-4-Matplotlib.ipynb>."
]
},
{
Expand Down Expand Up @@ -1135,7 +1135,7 @@
"\n",
"I would speculate that increasingly we will be using high-level plotting tools (such as pandas, xarray, holoviews) to explore data interactively.\n",
"\n",
"We can see a trend in data analysis libraries that data objects can be converted to such high-level annotated data objecs (such as European XFEL's [extra-data](https://extra-data.readthedocs.io) tools which can return a labelled xarray object). Other projects combine the metadata with the data in custom made objects to then provide convenience methods (such as [Ubermag](http://ubermag.github.io)'s [discretisedfield](https://ubermag.github.io/documentation/ipynb/discretisedfield/field-matplotlib-visualisation.html) object).\n",
"We can see a trend in data analysis libraries that data objects can be converted to such high-level annotated data objecs (such as European XFEL's [extra-data](https://extra-data.readthedocs.io) tools which can return a labelled xarray object). Other projects combine the metadata with the data in custom made objects to then provide convenience methods (such as [Ubermag](http://ubermag.github.io)'s [discretisedfield](discretisedfield/field-matplotlib-visualisation.html) object).\n",
"\n",
"Will we still need to learn the basics, such as the `matplotlib.pyplot` interface? Probably yes: the very least to fine tune the plots provided by these high level libraries: \n",
"\n"
Expand Down Expand Up @@ -1261,7 +1261,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.1"
"version": "3.9.13"
}
},
"nbformat": 4,
Expand Down
8 changes: 4 additions & 4 deletions book/16-scipy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@
"import scipy.fft\n",
"import numpy as np\n",
"import matplotlib.pyplot as plt\n",
"pi = scipy.pi\n",
"pi = np.pi\n",
"\n",
"signal_length = 0.5 # [seconds]\n",
"sample_rate = 500 # sampling rate [Hz]\n",
Expand Down Expand Up @@ -1310,7 +1310,7 @@
"source": [
"Note that there are other functions to read from and write to in formats as used by IDL, Netcdf and other formats in `scipy.io`.\n",
"\n",
"More → see [Scipy tutorial](https://docs.scipy.org/doc/scipy/reference/tutorial/io.html)."
"More → see [Scipy tutorial](https://docs.scipy.org/doc/scipy/reference/io.html)."
]
}
],
Expand All @@ -1330,9 +1330,9 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.7"
"version": "3.9.13"
}
},
"nbformat": 4,
"nbformat_minor": 1
}
}
7 changes: 6 additions & 1 deletion book/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ html:
crossorigin: "anonymous"


launch_buttons:
binderhub_url: "https://mybinder.org" # The URL for your BinderHub (e.g., https://mybinder.org)

# Allow parsing of "<img src=..." tags in markdown cells (used in Chapter 15 on visualisation)
parse:
myst_enable_extensions: # default extensions to enable in the myst parser. See https://myst-parser.readthedocs.io/en/latest/using/syntax-optional.html
Expand All @@ -60,4 +63,6 @@ sphinx:
config:
linkcheck_anchors: false
linkcheck_workers: 10
linkcheck_ignore : https://jacow.org/icalepcs2019/papers/tucpr02.pdf
linkcheck_ignore : [https://jacow.org/icalepcs2019/papers/tucpr02.pdf,
https://doi.org/10.1109/MCSE.2021.3059263,
https://ieeexplore.ieee.org/document/9325550]
Loading