-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
44 lines (36 loc) · 1.36 KB
/
Copy pathenvironment.yml
File metadata and controls
44 lines (36 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# CS 4328: Scientific Computing — conda/mamba environment
#
# Mirrors the `course-tools` venv described in CLAUDE.md. Used to generate
# course deliverables (notebooks, worksheets, slides, QTI quizzes).
#
# Create: conda env create -f environment.yml
# Update: conda env update -f environment.yml --prune
# Activate: conda activate course-tools
#
# text2qti is pip-only (not on conda-forge); see the pip section below.
name: course-tools
channels:
- conda-forge
dependencies:
- python=3.13
# --- Scientific stack (lecture & homework notebooks) ---
- numpy=2.4.6
- scipy=1.17.1 # scipy.differentiate, scipy.integrate (needs >=1.15)
- matplotlib=3.11.0
- sympy=1.14.0
# --- Jupyter / notebook authoring & execution ---
- nbformat=5.10.4 # build_*.py assemble notebooks programmatically
- nbconvert=7.17.1 # ExecutePreprocessor runs notebooks end-to-end
- jupyter=1.1.1
- jupyterlab=4.5.8
- ipykernel=7.3.0
- ipywidgets=8.1.8 # interactive ODE/PDE demos
# --- Document & slide generation ---
- python-pptx=1.0.2 # lecture slide decks (.pptx)
- python-docx>=1.1.0 # build_*_worksheet.py (.docx)
# --- Canvas API helper ---
- requests=2.34.2 # projects/import_presentation_rubric.py
# --- pip-only ---
- pip
- pip:
- text2qti==0.7.1 # Canvas QTI .zip from quiz .txt sources