Skip to content

Commit c7fecc2

Browse files
committed
Drop Python 3.6
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 4050cb0 commit c7fecc2

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ v32.0.0
66

77
This is a minor release with bug fixes and an output change.
88

9+
- We no longer support Python 3.6, only 3.7 and up.
910
- "utils.extract_tar" function now behaves correctly with links and return
1011
ExtractEvent to track extraction errors and warnings.
1112
This replaces the simpler list of error messages.
12-
- in all places where extract is callable (Image, Layer) there is a new
13+
- In all places where extract is callable (Image, Layer) there is a new
1314
skip_symlinks argument defaulting to True. If True, we skip symlinks and links.
1415

1516

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ jobs:
1111
parameters:
1212
job_name: ubuntu18_cpython
1313
image_name: ubuntu-18.04
14-
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10']
14+
python_versions: ['3.7', '3.8', '3.9', '3.10']
1515
test_suites:
1616
all: venv/bin/pytest -n 2 -vvs
1717

1818
- template: etc/ci/azure-posix.yml
1919
parameters:
2020
job_name: ubuntu20_cpython
2121
image_name: ubuntu-20.04
22-
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10']
22+
python_versions: ['3.7', '3.8', '3.9', '3.10']
2323
test_suites:
2424
all: venv/bin/pytest -n 2 -vvs
2525

2626
- template: etc/ci/azure-posix.yml
2727
parameters:
2828
job_name: macos1015_cpython
2929
image_name: macos-10.15
30-
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10']
30+
python_versions: ['3.7', '3.8', '3.9', '3.10']
3131
test_suites:
3232
all: venv/bin/pytest -n 2 -vvs
3333

@@ -43,7 +43,7 @@ jobs:
4343
# parameters:
4444
# job_name: win2019_cpython
4545
# image_name: windows-2019
46-
# python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10']
46+
# python_versions: ['3.7', '3.8', '3.9', '3.10']
4747
# test_suites:
4848
# all: venv\Scripts\pytest -n 2 -vvs
4949
#

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ zip_safe = false
5454

5555
setup_requires = setuptools_scm[toml] >= 4
5656

57-
python_requires = >=3.6.*
57+
python_requires = >=3.7.*
5858

5959
install_requires =
6060
click >= 6.7, !=7.0, !=8.0.3

0 commit comments

Comments
 (0)