Skip to content

Commit 7acb088

Browse files
authored
Node action (#1021)
1 parent 7057d26 commit 7acb088

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ jobs:
4747
- name: Report Python version
4848
run: python --version
4949

50+
- name: set up node
51+
uses: actions/setup-node@v4
52+
with:
53+
node-version: '22'
54+
5055
- name: Install poetry
5156
run: |
5257
pip install --upgrade pip
@@ -83,13 +88,9 @@ jobs:
8388
strategy:
8489
fail-fast: true
8590
matrix:
86-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
91+
python-version: ["3.10", "3.11", "3.12"]
8792
os: [ubuntu-latest, windows-latest]
8893
exclude:
89-
- os: windows-latest
90-
python-version: "3.8"
91-
- os: windows-latest
92-
python-version: "3.9"
9394
- os: windows-latest
9495
python-version: "3.10"
9596
- os: windows-latest

pretext/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
VERSION = get_version("pretext", Path(__file__).parent.parent)
2020

2121

22-
CORE_COMMIT = "8a30b87cc26f5282d1997a1cc90cbf3b6bbef348"
22+
CORE_COMMIT = "fb0b3365f6f14b2f0002a2fbb874a27d25454bd7"
2323

2424

2525
def activate() -> None:

0 commit comments

Comments
 (0)