diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1b71ea5..2715bd9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu, macos, windows] - python-version: ["3.8", "3.9", "3.10", "3.11-dev"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"] steps: - uses: actions/checkout@v3 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dae70b7..ae1a4a8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -32,7 +32,7 @@ repos: rev: v2.37.3 hooks: - id: pyupgrade - args: [--py38-plus] + args: [--py37-plus] - repo: https://github.com/pre-commit/mirrors-prettier rev: v2.7.1 hooks: diff --git a/pyproject.toml b/pyproject.toml index c64d578..31955b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" [project] name = "lazy_loader" version = "0.1rc2.dev0" -requires-python = ">=3.8" +requires-python = ">=3.7" authors = [{name = "Scientific Python Developers"}] readme = "README.md" license = {file = "LICENSE.md"} @@ -13,6 +13,7 @@ classifiers = [ "Development Status :: 4 - Beta", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",