File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11
11
build :
12
12
strategy :
13
13
matrix :
14
- python-version : ["3.7", "3.8"]
14
+ python-version : ["3.6", "3. 7", "3.8"]
15
15
os : ["ubuntu-latest", "macOS-latest"] # add "windows-latest" when possible
16
16
runs-on : ${{ matrix.os }}
17
17
name : Testing - Python ${{ matrix.python-version }} - ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Requirements:
7
7
- pipenv
8
8
9
9
Install python dependencies :
10
- ` pipenv install --dev --python 3.7 `
10
+ ` pipenv install --dev --python 3.8 `
11
11
12
12
Install yarn dependencies :
13
13
` yarn install `
Original file line number Diff line number Diff line change @@ -38,10 +38,11 @@ def get_package_version():
38
38
classifiers = [
39
39
"Development Status :: 3 - Alpha" ,
40
40
"Intended Audience :: Developers" ,
41
+ "Programming Language :: Python :: 3.6" ,
41
42
"Programming Language :: Python :: 3.7" ,
42
43
"Programming Language :: Python :: 3.8" ,
43
44
"Operating System :: OS Independent" ,
44
45
],
45
- python_requires = ">=3.7 " ,
46
+ python_requires = ">=3.6 " ,
46
47
entry_points = {"console_scripts" : ["universions = universions:cli" ]},
47
48
)
You can’t perform that action at this time.
0 commit comments