From f8b45508d1201b1b429d977cc791de3e2c8c44fa Mon Sep 17 00:00:00 2001 From: Gus Powers Date: Thu, 18 Jul 2024 18:34:46 -0400 Subject: [PATCH 1/3] upgrade to Python 3.12 (again) --- environment.yml | 2 +- notebooks/00-Introduction.ipynb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/environment.yml b/environment.yml index 48397ff..1afc0ee 100644 --- a/environment.yml +++ b/environment.yml @@ -3,7 +3,7 @@ channels: - defaults - conda-forge dependencies: - - python=3.11 + - python=3.12 - pip>=22.1 - nbconvert>=6.1 - numpy=1.26 diff --git a/notebooks/00-Introduction.ipynb b/notebooks/00-Introduction.ipynb index 1644365..eddd86c 100644 --- a/notebooks/00-Introduction.ipynb +++ b/notebooks/00-Introduction.ipynb @@ -362,7 +362,7 @@ "### Python\n", "\n", "* Python is the programming language we'll be learning in this class.\n", - "* We are using Python 3.11, the (second-)newest version of Python, for the entirety of this class.\n", + "* We are using Python 3.11, the newest version of Python, for the entirety of this class.\n", "* The core libaries we will be using are `pandas` and `seaborn`." ] }, From 903c1a81548339f8fe6ed186a0146feebb642913 Mon Sep 17 00:00:00 2001 From: Gus Powers Date: Fri, 26 Jul 2024 10:28:00 -0400 Subject: [PATCH 2/3] fix Python version in notebook --- notebooks/00-Introduction.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/00-Introduction.ipynb b/notebooks/00-Introduction.ipynb index eddd86c..9cd6b5a 100644 --- a/notebooks/00-Introduction.ipynb +++ b/notebooks/00-Introduction.ipynb @@ -362,7 +362,7 @@ "### Python\n", "\n", "* Python is the programming language we'll be learning in this class.\n", - "* We are using Python 3.11, the newest version of Python, for the entirety of this class.\n", + "* We are using Python 3.12, the newest version of Python, for the entirety of this class.\n", "* The core libaries we will be using are `pandas` and `seaborn`." ] }, From 8502c3369c05cb226ea42f1467c9f6a959485094 Mon Sep 17 00:00:00 2001 From: Gus Powers Date: Sun, 16 Mar 2025 12:19:39 -0400 Subject: [PATCH 3/3] add manual kick-off to workflow --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 990d1d3..a82ba2b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,6 +1,6 @@ name: Test -on: push +on: [push, workflow_dispatch] jobs: validate-notebooks: