File tree Expand file tree Collapse file tree 5 files changed +15
-11
lines changed
Expand file tree Collapse file tree 5 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 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 }}
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 : |
Original file line number Diff line number Diff line change 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 }}
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
Original file line number Diff line number Diff 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
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 : |
Original file line number Diff line number Diff 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
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.
Original file line number Diff line number Diff line change 4040)
4141
4242INSTALL_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
You can’t perform that action at this time.
0 commit comments