Skip to content

Commit 3349b83

Browse files
committed
Dropped python 3.6 support
1 parent a7185fd commit 3349b83

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on: [push, pull_request]
44

55
jobs:
66
unit-tests:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
88
strategy:
99
max-parallel: 3
1010
matrix:
11-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
11+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1212
steps:
1313
- name: install ffmpeg and gifsicle
1414
run: sudo apt update && sudo apt install ffmpeg gifsicle
@@ -33,7 +33,7 @@ jobs:
3333
run: tox -e $toxpyv
3434

3535
qa:
36-
runs-on: ubuntu-20.04
36+
runs-on: ubuntu-22.04
3737
steps:
3838
- name: install ffmpeg and gifsicle
3939
run: sudo apt update && sudo apt install ffmpeg gifsicle

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
release:
1414
environment: release
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python 3.11

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Using pylibzim `3.1.0`
1313

14+
### Removed
15+
16+
- Dropped support for Python 3.6
17+
1418
## [3.0.0] - 2023-03-31
1519

1620
⚠️ Warning: this release introduce several API changes to `zim.creator.Creator` and `zim.filesystem.make_zim_file`

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,12 @@ def read(*names, **kwargs):
4242
"Development Status :: 5 - Production/Stable",
4343
"Intended Audience :: Developers",
4444
"Programming Language :: Python",
45-
"Programming Language :: Python :: 3.6",
4645
"Programming Language :: Python :: 3.7",
4746
"Programming Language :: Python :: 3.8",
4847
"Programming Language :: Python :: 3.9",
4948
"Programming Language :: Python :: 3.10",
5049
"Programming Language :: Python :: 3.11",
5150
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
5251
],
53-
python_requires=">=3.6",
52+
python_requires=">=3.7",
5453
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, py310, py311, black, isort, flake8, coverage
2+
envlist = py37, py38, py39, py310, py311, black, isort, flake8, coverage
33

44
[testenv]
55
passenv =

0 commit comments

Comments
 (0)