Skip to content

Commit 6e4a029

Browse files
committed
Use recently-released mathics-scanner 1.3.0
1 parent 572d12b commit 6e4a029

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

.github/workflows/osx.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [macOS]
18-
python-version: [3.7, 3.8, 3.9]
18+
python-version: ['3.7', '3.8', '3.9']
1919
steps:
2020
- uses: actions/checkout@v3
2121
- name: Set up Python ${{ matrix.python-version }}
@@ -30,7 +30,8 @@ jobs:
3030
- name: Install Mathics3 with full Python dependencies
3131
run: |
3232
# We can comment out after next Mathics-Scanner release
33-
python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
33+
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
34+
python -m pip install Mathics-Scanner
3435
make develop-full
3536
- name: Test Mathics3
3637
run: |

.github/workflows/ubuntu-cython.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-20.04
1414
strategy:
1515
matrix:
16-
python-version: [3.9]
16+
python-version: ['3.10']
1717
steps:
1818
- uses: actions/checkout@v3
1919
- name: Set up Python ${{ matrix.python-version }}
@@ -25,7 +25,8 @@ jobs:
2525
sudo apt-get update -qq && sudo apt-get install -qq liblapack-dev llvm-dev tesseract-ocr
2626
python -m pip install --upgrade pip
2727
# We can comment out after next Mathics-Scanner release
28-
python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
28+
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
29+
python -m pip install Mathics-Scanner
2930
- name: Install Mathics with full dependencies
3031
run: |
3132
make develop-full-cython

.github/workflows/ubuntu.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
strategy:
1313
matrix:
14-
python-version: [3.7, 3.8, 3.9]
14+
python-version: ['3.7', '3.8', '3.9', '3.10']
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v3
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install OS dependencies
@@ -25,7 +25,8 @@ jobs:
2525
run: |
2626
python -m pip install --upgrade pip
2727
# We can comment out after next Mathics-Scanner release
28-
python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
28+
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
29+
python -m pip install Mathics-Scanner
2930
make develop-full
3031
- name: Test Mathics
3132
run: |

.github/workflows/windows.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [windows]
15-
python-version: [3.7, 3.8]
15+
python-version: ['3.8', '3.9']
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v3
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install OS dependencies
@@ -32,7 +32,8 @@ jobs:
3232
- name: Install Mathics3 with Python dependencies
3333
run: |
3434
# We can comment out after next Mathics-Scanner release
35-
python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
35+
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
36+
python -m pip install Mathics-Scanner
3637
make develop-full
3738
- name: Test Mathics3
3839
# Limit pip install to a basic install *without* full dependencies.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
)
4141

4242
INSTALL_REQUIRES = [
43-
"Mathics-Scanner >= 1.3.0.dev0",
43+
"Mathics-Scanner >= 1.3.0",
4444
# Pillow 9.1.0 supports BigTIFF with big-endian byte order.
4545
# ExampleData image hedy.tif is in this format.
4646
# Pillow 9.2 handles sunflowers.jpg

0 commit comments

Comments
 (0)