Skip to content

Add python 3.12 compatibility (#26) #3

Add python 3.12 compatibility (#26)

Add python 3.12 compatibility (#26) #3

Workflow file for this run

name: Continuous Deployment
on:
push:
branches: [ main ]
jobs:
deploy-docs:
runs-on: ubuntu-latest
concurrency: deploy-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "0.5.10"
- name: Set up env
run: uv sync --all-extras --frozen
- name: Copy notebooks to docs folder
run: cp -r notebooks/* docs/notebooks
- run: |
uv run ipython kernel install --user --name=behavior_generation_lecture
uv run mkdocs gh-deploy --force