diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 73e0d22..e77079f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, ubuntu-latest, macos-13] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12"] steps: - name: Checkout master branch uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index a215766..52e94c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,13 +7,12 @@ authors = [ ] description = "Python tools for machine vision - education and research" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.10" classifiers = [ "Development Status :: 5 - Production/Stable", # Indicate who your project is intended for "Intended Audience :: Developers", # Specify the Python versions you support here. - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", @@ -93,7 +92,7 @@ packages = [ [tool.black] line-length = 88 -target-version = ['py37'] +target-version = ['py310', 'py311', 'py312'] exclude = "camera_derivatives.py" [tool.coverage.run]