andreped commited on
Commit
f0e4610
1 Parent(s): 949adda

Python 3.6-3.10 run CI

Browse files
Files changed (2) hide show
  1. .github/workflows/build.yml +3 -3
  2. setup.py +2 -0
.github/workflows/build.yml CHANGED
@@ -13,10 +13,10 @@ jobs:
13
  runs-on: ubuntu-20.04
14
  steps:
15
  - uses: actions/checkout@v1
16
- - name: Set up Python 3.7
17
  uses: actions/setup-python@v2
18
  with:
19
- python-version: 3.7
20
 
21
  - name: Install dependencies
22
  run: |
@@ -39,7 +39,7 @@ jobs:
39
  strategy:
40
  matrix:
41
  os: [windows-2019, ubuntu-20.04, macos-10.15]
42
- python-version: [3.7, 3.8]
43
 
44
  steps:
45
  - uses: actions/checkout@v1
 
13
  runs-on: ubuntu-20.04
14
  steps:
15
  - uses: actions/checkout@v1
16
+ - name: Set up Python 3.6
17
  uses: actions/setup-python@v2
18
  with:
19
+ python-version: 3.6
20
 
21
  - name: Install dependencies
22
  run: |
 
39
  strategy:
40
  matrix:
41
  os: [windows-2019, ubuntu-20.04, macos-10.15]
42
+ python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
43
 
44
  steps:
45
  - uses: actions/checkout@v1
setup.py CHANGED
@@ -24,6 +24,8 @@ setup(
24
  "Programming Language :: Python :: 3.6",
25
  "Programming Language :: Python :: 3.7",
26
  "Programming Language :: Python :: 3.8",
 
 
27
  "License :: OSI Approved :: MIT License",
28
  "Operating System :: OS Independent",
29
  ],
 
24
  "Programming Language :: Python :: 3.6",
25
  "Programming Language :: Python :: 3.7",
26
  "Programming Language :: Python :: 3.8",
27
+ "Programming Language :: Python :: 3.9",
28
+ "Programming Language :: Python :: 3.10",
29
  "License :: OSI Approved :: MIT License",
30
  "Operating System :: OS Independent",
31
  ],