Skip to content

Commit 76f1dfd

Browse files
committed
Merge pull request #3 from Mathics3/mathics-5.0-upgrade
remove debug statement Mathics 5.0 upgrade
2 parents d23cc01 + 4b39f5c commit 76f1dfd

File tree

7 files changed

+127
-86
lines changed

7 files changed

+127
-86
lines changed

.github/workflows/osx.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Mathics (macOS)
1+
name: pymathics-natlang (macOS)
22

33
on:
44
push:
@@ -8,23 +8,29 @@ on:
88

99
jobs:
1010
build:
11+
env:
12+
LDFLAGS: "-L/usr/local/opt/llvm@11/lib"
13+
CPPFLAGS: "-I/usr/local/opt/llvm@11/include"
1114
runs-on: macos-latest
1215
strategy:
1316
matrix:
1417
os: [macOS]
15-
python-version: [3.6, 3.7, 3.8]
18+
python-version: [3.6, 3.7, 3.8, 3.9]
1619
steps:
17-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
1821
- name: Set up Python ${{ matrix.python-version }}
1922
uses: actions/setup-python@v2
2023
with:
2124
python-version: ${{ matrix.python-version }}
2225
- name: Install dependencies
2326
run: |
24-
LLVM_CONFIG=/usr/local/Cellar/llvm@9/9.0.1_2/bin/llvm-config pip install llvmlite
25-
brew install mariadb
27+
brew install llvm@11
2628
python -m pip install --upgrade pip
29+
LLVM_CONFIG=/usr/local/Cellar/llvm@11/11.1.0/bin/llvm-config pip install llvmlite
30+
brew install mariadb
2731
pip install pytest
32+
# Can remove after next Mathics-core release
33+
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
2834
- name: Install pymathics.natlang
2935
run: |
3036
pip install -e .

.github/workflows/ubuntu.yml

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

33
on:
44
push:
@@ -8,10 +8,13 @@ on:
88

99
jobs:
1010
build:
11+
env:
12+
LDFLAGS: "-L/usr/local/opt/llvm@11/lib"
13+
CPPFLAGS: "-I/usr/local/opt/llvm@11/include"
1114
runs-on: ubuntu-latest
1215
strategy:
1316
matrix:
14-
python-version: [3.6, 3.7, 3.8]
17+
python-version: [3.6, 3.7, 3.8, 3.9]
1518
steps:
1619
- uses: actions/checkout@v2
1720
- name: Set up Python ${{ matrix.python-version }}
@@ -23,6 +26,8 @@ jobs:
2326
sudo apt-get update -qq && sudo apt-get install -qq liblapack-dev llvm-dev maria libmysqlclient-dev
2427
python -m pip install --upgrade pip
2528
pip install pytest
29+
# Can remove after next Mathics-core release
30+
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
2631
- name: Install pymathics.natlang
2732
run: |
2833
pip install -e .

.github/workflows/windows.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: pymathics-natlang (Windows)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: windows-latest
12+
strategy:
13+
matrix:
14+
os: [windows]
15+
python-version: [ 3.8, 3.9]
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: Set up Python ${{ matrix.python-version }}
19+
uses: actions/setup-python@v2
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
- name: Install dependencies
23+
run: |
24+
python -m pip install --upgrade pip
25+
python -m pip install wheel
26+
choco install llvm mariadb mysql-connector
27+
pip install pytest
28+
# Can remove after next Mathics-core release
29+
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
30+
- name: Install pymathics.natlang
31+
run: |
32+
pip install -e .
33+
- name: Test Mathics
34+
run: |
35+
make check

0 commit comments

Comments
 (0)