Skip to content

Commit

Permalink
fix: remove py 3.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxin688 committed Aug 3, 2024
1 parent bab491d commit 3e55046
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down
13 changes: 1 addition & 12 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies = [
"icmplib>=3.0.4",
]
readme = "README.md"
requires-python = ">= 3.10"
requires-python = ">= 3.11"

[build-system]
requires = ["hatchling"]
Expand Down

0 comments on commit 3e55046

Please sign in to comment.