Skip to content

Commit ef10c34

Browse files
authored
Add Python 3.6 support (#42)
1 parent a856a06 commit ef10c34

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
strategy:
1313
matrix:
14-
python-version: ["3.7", "3.8"]
14+
python-version: ["3.6", "3.7", "3.8"]
1515
os: ["ubuntu-latest", "macOS-latest"] # add "windows-latest" when possible
1616
runs-on: ${{ matrix.os }}
1717
name: Testing - Python ${{ matrix.python-version }} - ${{ matrix.os }}

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Requirements:
77
- pipenv
88

99
Install python dependencies :
10-
`pipenv install --dev --python 3.7`
10+
`pipenv install --dev --python 3.8`
1111

1212
Install yarn dependencies :
1313
`yarn install`

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,11 @@ def get_package_version():
3838
classifiers=[
3939
"Development Status :: 3 - Alpha",
4040
"Intended Audience :: Developers",
41+
"Programming Language :: Python :: 3.6",
4142
"Programming Language :: Python :: 3.7",
4243
"Programming Language :: Python :: 3.8",
4344
"Operating System :: OS Independent",
4445
],
45-
python_requires=">=3.7",
46+
python_requires=">=3.6",
4647
entry_points={"console_scripts": ["universions = universions:cli"]},
4748
)

0 commit comments

Comments
 (0)