|
36 | 36 | fail-fast: false |
37 | 37 |
|
38 | 38 | matrix: |
39 | | - python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"] |
| 39 | + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"] |
40 | 40 |
|
41 | 41 | include: |
42 | 42 | - python-version: "3.14-dev" |
|
49 | 49 |
|
50 | 50 | - name: Set up Python |
51 | 51 | uses: actions/setup-python@v5 |
52 | | - if: startsWith(matrix.python-version, '3.') |
53 | 52 | with: |
54 | 53 | python-version: ${{ matrix.python-version }} |
55 | 54 |
|
56 | | - - name: Set up Python2 (Linux) |
57 | | - if: matrix.python-version == '2.7' && startsWith(matrix.os, 'ubuntu') |
58 | | - run: | |
59 | | - sudo ln -fs python2 /usr/bin/python |
60 | | - sudo apt-get update |
61 | | - sudo apt-get install python-setuptools python2-dev |
62 | | - curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py |
63 | | - sudo python2 get-pip.py |
64 | | - ls -l /usr/bin/pip* /usr/local/bin/pip* |
65 | | - which pip |
66 | | -
|
67 | 55 | - name: Install Dependency |
68 | 56 | run: | |
69 | 57 | python -m pip install -U pip setuptools && python -m pip install -r requirements.txt |
|
77 | 65 | run: make testslow |
78 | 66 |
|
79 | 67 | - name: Running benchmark |
80 | | - if: startsWith(matrix.python-version, '3.') && matrix.python-version != '3.5' |
| 68 | + if: startsWith(matrix.python-version, '3.') |
81 | 69 | run: | |
82 | 70 | python benchmark/telco_fractions.py -n 250 |
83 | 71 | python benchmark/microbench.py create pydigits |
@@ -154,10 +142,8 @@ jobs: |
154 | 142 | fail-fast: false |
155 | 143 |
|
156 | 144 | matrix: |
157 | | - #os: [macos-10.15, windows-latest] |
158 | | - #os: [macos-10.15, macOS-M1] |
159 | | - os: [macos-latest, windows-latest] |
160 | | - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"] |
| 145 | + os: [macos-13, windows-latest] |
| 146 | + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"] |
161 | 147 |
|
162 | 148 | include: |
163 | 149 | - python-version: "3.14-dev" |
|
0 commit comments