Skip to content

Commit d7bbbce

Browse files
authored
Use Python 3.8 in pipfile, remove 3.6 from tox files, update dependen… (#157)
* Use Python 3.8 in pipfile, remove 3.6 from tox files, update dependency check to use 3.8 * Ensure pipenv installs using python 3.8 in github actions dependency check * Update changelog to reflect removing support for 3.6
1 parent 459797b commit d7bbbce

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

.github/workflows/test_python_versions.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
strategy:
3838
matrix:
39-
python-version: [3.7]
39+
python-version: [3.8] # Should match Pipfile, otherwise `pipenv check` will fail
4040
steps:
4141
- uses: actions/checkout@v2
4242
- name: Set up Python ${{ matrix.python-version }}
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
python -m pip install --upgrade pip wheel
4949
python -m pip install --upgrade pipenv
50-
pipenv install --python 3.7 --dev --ignore-pipfile
50+
pipenv install --python 3.8 --dev --ignore-pipfile
5151
- name: Run Coverage
5252
run: |
5353
pipenv run coverage run --source="launchkey" setup.py nosetests

CHANGES.rst

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ CHANGELOG for LaunchKey Python SDK
55
-----
66

77
* Removed Python 2 support
8+
* Removed Python 3.6 support
89
* Updated JOSE Transport to include the SDK type, SDK version, and OS version in the User Agent
910

1011
3.9.1

Pipfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ pyhamcrest = "*"
2424
pyotp = "*"
2525

2626
[requires]
27-
python_version = "3.7"
27+
python_version = "3.8"

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"Programming Language :: Python :: 3.7",
3434
"Programming Language :: Python :: 3.8",
3535
"Programming Language :: Python :: 3.9",
36+
"Programming Language :: Python :: 3.10",
3637
"Natural Language :: English",
3738
"Intended Audience :: Developers",
3839
],

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38,py39,pypy3
2+
envlist = py37,py38,py39,pypy3
33

44
[testenv]
55
whitelist_externals=make

tox_integration.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38,py39,pypy3
2+
envlist = py37,py38,py39,pypy3
33

44
[testenv]
55
whitelist_externals=make

0 commit comments

Comments
 (0)