Skip to content

Commit 5cb0f68

Browse files
committed
Try to fix up Windows CI
1 parent c820b78 commit 5cb0f68

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
22-
- name: Install ICU dependencies
22+
- name: Set ICU version
2323
run: |
2424
echo "PKG_CONFIG_PATH=$(brew --prefix icu4c)/lib/pkgconfig" >> $GITHUB_ENV
2525
- name: Install dependencies

.github/workflows/windows.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@ jobs:
1919
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
22+
- name: Set ICU version
23+
run: |
24+
echo "ICU_VERSION=73.2" >> $GITHUB_ENV
2225
- name: Install dependencies
2326
run: |
27+
choco install icu4c --version=73.2
2428
python -m pip install --upgrade pip
2529
python -m pip install pytest
2630
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner
@@ -30,7 +34,7 @@ jobs:
3034
# bash admin-tools/make-JSON-tables.sh
3135
# cd ..
3236
# python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
33-
- name: Install Mathic3 PyICU Module
37+
- name: Install Mathics3 PyICU Module
3438
run: |
3539
python -m pip install Mathics3 PyICU
3640
python -m pip install --no-build-isolation -e .

0 commit comments

Comments
 (0)