Skip to content

Commit 1c47e72

Browse files
committed
Try to get CI working
1 parent 60f58ae commit 1c47e72

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/osx.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ jobs:
3232
# python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
3333
- name: Install Mathic3 Hello Module
3434
run: |
35-
python -m pip install -e .
35+
python -m pip install Mathics3
36+
python -m pip install --no-build-isolation -e .
3637
- name: Test Mathics3 Hello Module
3738
run: |
3839
make check

.github/workflows/ubuntu.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.10', '3.11', '3.12', '3.13']
14+
python-version: ['3.12', '3.13']
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}
@@ -30,7 +30,8 @@ jobs:
3030
# python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
3131
- name: install Mathic3 Hello Module
3232
run: |
33-
python -m pip install -e .
33+
python -m pip install Mathics3
34+
python -m pip install --no-build-isolation -e .
3435
- name: Test Mathics3 Hello Module
3536
run: |
3637
make check

.github/workflows/windows.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [windows]
15-
python-version: ['3.10', '3.11', '3.12']
15+
python-version: ['3.11', '3.12', '3.13']
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python-version }}
@@ -32,7 +32,8 @@ jobs:
3232
# python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
3333
- name: Install Mathic3 Hello Module
3434
run: |
35-
python -m pip install -e .
35+
python -m pip install Mathics3
36+
python -m pip install --no-build-isolation -e .
3637
- name: Test Mathics
3738
run: |
3839
make check

0 commit comments

Comments
 (0)