Skip to content

Commit ec558e1

Browse files
committed
use versions for requirements.txt and switch to python 3.13
1 parent 176d790 commit ec558e1

3 files changed

Lines changed: 9 additions & 12 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Jupyter Dev Container",
3-
"image": "mcr.microsoft.com/vscode/devcontainers/python:3.11-bullseye",
3+
"image": "mcr.microsoft.com/vscode/devcontainers/python:3.13-bullseye",
44
"features": {
55
"docker-in-docker": {
66
"version": "latest",
@@ -39,7 +39,7 @@
3939
}
4040
}
4141
},
42-
"postCreateCommand": "python -m pip install --upgrade pip && pip install jupyterlab jupyter-book odsbox[exd-data] matplotlib ghp-import scikit-learn seaborn plotly sphinxcontrib-mermaid",
42+
"postCreateCommand": "python -m pip install --upgrade pip && pip install -r requirements.txt",
4343
"forwardPorts": [
4444
8888
4545
],

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
- uses: actions/checkout@v3
2727

2828
# Install dependencies
29-
- name: Set up Python 3.11
29+
- name: Set up Python 3.13
3030
uses: actions/setup-python@v4
3131
with:
32-
python-version: 3.11
32+
python-version: 3.13
3333

3434
- name: Install dependencies
3535
run: |

requirements.txt

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
jupyter-book<2.0
2-
matplotlib
3-
numpy
4-
ghp-import
5-
odsbox[exd-data]
6-
scikit-learn
7-
seaborn
8-
sphinxcontrib-mermaid
9-
pyspark
2+
matplotlib>=3.5.0
3+
ghp-import>=1.0.0
4+
odsbox[exd-data]>=1.0.14
5+
scikit-learn>=1.0.0
6+
seaborn>=0.11.0

0 commit comments

Comments
 (0)