Skip to content

Commit

Permalink
sync up with the PHY 546 stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed May 18, 2023
1 parent c1703bc commit 87802e2
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: "3.10"
- name: Install Python dependencies
run: |
sudo apt-get install python3-pip
Expand Down
2 changes: 1 addition & 1 deletion content/Introduction.md
@@ -1,5 +1,5 @@
# Python REU Tutorial
## Summer 2022
## Summer 2023

![xkcd](01-python-basics/python.png)

Expand Down
19 changes: 17 additions & 2 deletions content/_config.yml
Expand Up @@ -4,7 +4,7 @@
title: REU Tutorial on Python
author: <a href="https://zingale.github.io">Michael Zingale</a>
#logo: logo.png
copyright: "2021"
copyright: "2023"

# Force re-execution of notebooks on each build.
# See https://jupyterbook.org/content/execute.html
Expand All @@ -29,13 +29,28 @@ html:
use_repository_button: true
extra_footer: |
<p>
&copy; 2021; CC-BY-NC-SA 4.0
&copy; 2023; CC-BY-NC-SA 4.0
<p>
sphinx:
config:
html_show_copyright: false
nbsphinx_timeout: 300
nb_execution_timeout: 300

launch_buttons:
binderhub_url: "https://mybinder.org"
colab_url: "https://colab.research.google.com"

parse:
extensions:
- myst_parser
- sphinx_design

myst_enable_extensions:
# don't forget to list any other extensions you want enabled,
# including those that are enabled by default!
- amsmath
- dollarmath
- linkify
- colon_fence
10 changes: 10 additions & 0 deletions content/_static/myfile.css
@@ -0,0 +1,10 @@
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
font-family: "Open Sans", sans-serif;
}

.heading-style, h1, h2, h3, h4, h5, h6 {
font-family: "Open Sans", sans-serif;
}

0 comments on commit 87802e2

Please sign in to comment.