Skip to content

Commit 04f3017

Browse files
RobbeSneydersp1c2u
authored andcommitted
Drop python 3.6 support and add 3.10
1 parent 0ac7a43 commit 04f3017

File tree

7 files changed

+317
-422
lines changed

7 files changed

+317
-422
lines changed

.github/workflows/python-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
python-version: [3.6, 3.7, 3.8, 3.9]
17+
python-version: ['3.7', '3.8', '3.9', '3.10']
1818
os: [windows-latest, ubuntu-latest]
1919
fail-fast: false
2020
steps:

.travis.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ language: python
22
sudo: false
33
matrix:
44
include:
5-
- python: 3.6
6-
- python: 3.7
7-
- python: 3.8
8-
- python: 3.9
9-
- python: nightly
10-
- python: pypy3
5+
- python: '3.7'
6+
- python: '3.8'
7+
- python: '3.9'
8+
- python: '3.10-dev'
9+
- python: 'nightly'
10+
- python: 'pypy3'
1111
allow_failures:
12-
- python: nightly
12+
- python: 'nightly'
1313
before_install:
1414
- python -m pip install --upgrade pip
1515
- pip install "poetry<1.2"

0 commit comments

Comments
 (0)