Skip to content

Commit 0806e83

Browse files
authored
Merge pull request #15 from Tobias-Fischer/patch-4
Bump minimum Python to 3.10
2 parents 53dc750 + 55589db commit 0806e83

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [windows-latest, ubuntu-latest, macos-13]
23-
python-version: ["3.9", "3.10", "3.11", "3.12"]
23+
python-version: ["3.10", "3.11", "3.12"]
2424
steps:
2525
- name: Checkout master branch
2626
uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@ authors = [
77
]
88
description = "Python tools for machine vision - education and research"
99
readme = "README.md"
10-
requires-python = ">=3.7"
10+
requires-python = ">=3.10"
1111
classifiers = [
1212
"Development Status :: 5 - Production/Stable",
1313
# Indicate who your project is intended for
1414
"Intended Audience :: Developers",
1515
# Specify the Python versions you support here.
16-
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",
@@ -97,7 +96,7 @@ packages = ["src/machinevisiontoolbox"]
9796

9897
[tool.black]
9998
line-length = 88
100-
target-version = ['py311']
99+
target-version = ['py310', 'py311', 'py312']
101100
exclude = "camera_derivatives.py"
102101

103102
[tool.coverage.run]

0 commit comments

Comments
 (0)