Skip to content

Commit 4744d1d

Browse files
committed
Try to get OSX CI working again
1 parent edc657c commit 4744d1d

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

.github/workflows/osx.yml-needs-enchant-fixup renamed to .github/workflows/osx.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ master ]
66
pull_request:
7-
branches: [ master ]
7+
branches: '**'
88

99
jobs:
1010
build:
@@ -29,12 +29,15 @@ jobs:
2929
pip install pytest pyenchant
3030
PYENCHANT_VERBOSE_FIND=1 python -c 'import enchant'
3131
32-
# Can comment out when next Mathics core and Mathics-scanner are released
33-
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
34-
# Can remove after next Mathics-core release
35-
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
36-
(cd src/mathics3 && bash ./admin-tools/make-op-tables.sh)
37-
# python -m pip install Mathics3[full]
32+
- name: Install Python dependencies
33+
run: |
34+
# Go over and comment out stuff when next Mathics core and Mathics-scanner are released
35+
python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
36+
git clone https://github.com/Mathics3/mathics-core
37+
(cd mathics-core && pip3 install -e .[full])
38+
(cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
39+
python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
40+
python -m pip install -e .
3841
- name: Install Mathics3 natlang Module
3942
run: |
4043
make develop

.github/workflows/ubuntu.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Pymathics.natlang (ubuntu)
1+
name: pymathics.natlang (Ubuntu)
22

33
on:
44
push:
@@ -11,7 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
14+
# 3.9 works but it takes a long time to gather dependencies
15+
python-version: ['3.10', '3.11', '3.12', '3.13']
1516
steps:
1617
- uses: actions/checkout@v4
1718
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)