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

Improve docs #70

Merged
merged 1 commit into from
Jul 25, 2023
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 .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ jobs:
file: ${{ matrix.version }}.dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
labels: ${{ steps.meta.outputs.labels }}
2 changes: 1 addition & 1 deletion docker-101/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ deps =
allowlist_externals =
make
commands =
make
make {posargs}
4 changes: 3 additions & 1 deletion git-101/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ all: $(BOOKS)
@echo $(BOOKS)

notebooks/%.ipynb: %.md

notedown --to notebook $^ > $@

run: all
jupyter notebook notebooks
14 changes: 13 additions & 1 deletion git-101/tox.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# This file will either build or run current notebooks
# calling a Makefile.
#
# To build, run:
#
# $ tox
#
# To run the course, run:
#
# $ tox -- run
#
[tox]
envlist = py3
skipsdist = True
Expand All @@ -8,4 +20,4 @@ deps =
allowlist_externals =
make
commands =
make
make {posargs}
12 changes: 12 additions & 0 deletions python-basic/tox.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# This file will either build or run current notebooks
# calling a Makefile.
#
# To build, run:
#
# $ tox
#
# To run the course, run:
#
# $ tox -- run
#
[tox]
envlist = py3
skipsdist = True
Expand Down