Skip to content

Commit f013b69

Browse files
committed
Drop support for Python 3.8
1 parent 2f96373 commit f013b69

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ ubuntu-22.04 ]
11-
python: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
11+
python: [ '3.9', '3.10', '3.11', '3.12' ]
1212
variant: [ "py", "py-images" ]
1313
include:
1414
- os: macOS-12

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ repos:
2020
rev: v1.6.0
2121
hooks:
2222
- id: vermin
23-
args: ['-t=3.8-', '--violations']
23+
args: ['-t=3.9-', '--violations']

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ python-barcode
2626
There are no external dependencies when generating SVG files.
2727
Pillow is required for generating images (e.g.: PNGs).
2828

29-
Support Python 3.8 to 3.12.
29+
Support Python 3.9 to 3.12.
3030

3131
.. image:: example-ean13.png
3232
:target: https://github.com/WhyNotHugo/python-barcode

docs/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Changelog
44
v0.16.0
55
~~~~~~~
66

7-
* **Breaking** Drop support for Python 3.7.
7+
* **Breaking** Drop support for Python 3.7 and 3.8.
88
* Make image DPI configurable.
99
* Fixed inconsistent checksum calculation when calculating the checksum
1010
multiple times for EAN barcodes.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ select = [
3636
"PLE",
3737
"RUF",
3838
]
39-
target-version = "py38"
39+
target-version = "py39"
4040

4141
[tool.ruff.isort]
4242
force-single-line = true

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"Operating System :: OS Independent",
2626
"Programming Language :: Python",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.8",
2928
"Programming Language :: Python :: 3.9",
3029
"Programming Language :: Python :: 3.10",
3130
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)