Skip to content

Commit

Permalink
Drop support for Python 3.6
Browse files Browse the repository at this point in the history
Python 3.6 has reached its end-of-life date, and no longer supported by the latest version of pip, which is breaking our CI scripts.
  • Loading branch information
tomtung committed Feb 1, 2022
1 parent 487ad9c commit bef8c6f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 15 deletions.
6 changes: 0 additions & 6 deletions .ci/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ stages:
container: 'quay.io/pypa/manylinux2010_x86_64:latest'
strategy:
matrix:
Python3.6:
python.version: 3.6
Python3.7:
python.version: 3.7
Python3.8:
Expand All @@ -69,8 +67,6 @@ stages:
vmImage: 'windows-2019'
strategy:
matrix:
Python3.6:
python.version: 3.6
Python3.7:
python.version: 3.7
Python3.8:
Expand All @@ -85,8 +81,6 @@ stages:
vmImage: 'macOS-1015'
strategy:
matrix:
Python3.6:
python.version: 3.6
Python3.7:
python.version: 3.7
Python3.8:
Expand Down
6 changes: 0 additions & 6 deletions .ci/azure-python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ steps:
set -e
case $(python.version) in
3.6)
LANG_ABI_VER="cp36-cp36m"
;;
3.7)
LANG_ABI_VER="cp37-cp37m"
;;
Expand All @@ -46,9 +43,6 @@ steps:
set -e
case $(python.version) in
3.6)
FULL_VERSION=3.6.8
;;
3.7)
FULL_VERSION=3.7.9
;;
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def load_readme():
),
long_description=load_readme(),
long_description_content_type="text/markdown",
python_requires=">=3.6",
python_requires=">=3.7",
url="https:/tomtung/omikuji",
license="MIT",
packages=["omikuji"],
Expand All @@ -50,8 +50,6 @@ def load_readme():
milksnake_universal=False,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit bef8c6f

Please sign in to comment.