diff --git a/.github/workflows/test-suite.yaml b/.github/workflows/test-suite.yaml index 3074e73..a5d8b5b 100644 --- a/.github/workflows/test-suite.yaml +++ b/.github/workflows/test-suite.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{matrix.python-version}} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3686e01..6e2604d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,17 +29,6 @@ repos: hooks: - id: pyupgrade args: [ - "--py310-plus" + "--py311-plus" ] files: ".*" - - # - repo: local - # hooks: - # - id: pytest-check - # name: pytest-check - # stages: [commit] - # types: [python] - # entry: pytest - # language: system - # pass_filenames: false - # always_run: true diff --git a/pyproject.toml b/pyproject.toml index dcb45eb..3e6accd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "icmplib>=3.0.4", ] readme = "README.md" -requires-python = ">= 3.10" +requires-python = ">= 3.11" [build-system] requires = ["hatchling"]