Skip to content

Commit ecf46b9

Browse files
committed
Use a released version of mathics-parser
1 parent 12ff672 commit ecf46b9

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/osx.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ jobs:
2424
brew install llvm@9
2525
python -m pip install --upgrade pip
2626
LLVM_CONFIG=/usr/local/Cellar/llvm@9/9.0.1_2/bin/llvm-config pip install llvmlite
27-
python -m pip install -e git://github.com/Mathics3/mathics-scanner.git#egg=Mathics_Scanner
2827
- name: Install Mathics
2928
run: |
30-
make
29+
make develop
3130
- name: Test Mathics
3231
run: |
3332
pip install pytest pexpect

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,10 @@ jobs:
2222
run: |
2323
sudo apt-get update -qq && sudo apt-get install -qq liblapack-dev llvm-dev
2424
python -m pip install --upgrade pip
25-
python -m pip install -e git://github.com/Mathics3/mathics-scanner.git#egg=Mathics_Scanner
2625
- name: Install Mathics
2726
run: |
2827
sed -i "s/'sympy==[0-9]\.[0-9]\.[0-9]', //" setup.py
29-
make
28+
make develop
3029
- name: Test Mathics
3130
run: |
3231
pip install pytest pexpect

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def read(*rnames):
8080

8181
# General Requirements
8282
INSTALL_REQUIRES += [
83-
"Mathics_Scanner>=1.0.0.dev",
83+
"Mathics_Scanner>=1.0.0,<1.1.0",
8484
"sympy>=1.7, <= 1.8dev",
8585
"mpmath>=1.1.0",
8686
"numpy",

0 commit comments

Comments
 (0)