Skip to content

Commit eb03fd6

Browse files
authored
TEST: Add Python 3.10, remove 3.7 (#620)
1 parent 6bc9d17 commit eb03fd6

File tree

2 files changed

+4
-17
lines changed

2 files changed

+4
-17
lines changed

.github/workflows/conda_ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [windows-latest, ubuntu-latest, macos-latest]
18-
python-version: [3.7, 3.8, 3.9]
19-
exclude:
20-
- os: windows-latest
21-
python-version: 3.7
18+
python-version: [3.8, 3.9, '3.10']
19+
2220
steps:
2321
- uses: actions/checkout@v2
2422
with:

.github/workflows/test.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
name: build
22

3-
# We ignore Python 3.7 on windows-latest because 3 tests are failing:
4-
# - FAIL: test_quadrect_2d_H (quantecon.tests.test_quad.TestQuadrect)
5-
# AssertionError:
6-
# Not equal to tolerance rtol=1e-07, atol=0
7-
# - FAIL: test_quadrect_2d_H2 (quantecon.tests.test_quad.TestQuadrect)
8-
# AssertionError:
9-
# Not equal to tolerance rtol=1e-07, atol=0
10-
# - The last error can't be found from the log
11-
#
123
# Run this occasionally to test performance:
134
# nosetests -a "slow"
145

@@ -24,10 +15,8 @@ jobs:
2415
strategy:
2516
matrix:
2617
os: [windows-latest, ubuntu-latest, macos-latest]
27-
python-version: [3.7, 3.8, 3.9]
28-
exclude:
29-
- os: windows-latest
30-
python-version: 3.7
18+
python-version: [3.8, 3.9, '3.10']
19+
3120
steps:
3221
- uses: actions/checkout@v2
3322
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)