Skip to content

Commit

Permalink
drop python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
p1c2u committed Jun 12, 2023
1 parent 563fea0 commit aa0ae15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: python
sudo: false
matrix:
include:
- python: 3.7
- python: 3.8
- python: 3.9
- python: nightly
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ include = [
]

[tool.poetry.dependencies]
python = "^3.7.0"
python = "^3.8.0"
jsonschema = ">=4.0.0,<4.18.0"
rfc3339-validator = "*" # requred by jsonschema for date-time checker

Expand All @@ -67,7 +67,7 @@ pytest-flake8 = "*"
pytest-cov = "*"
mypy = "^0.910"
flynt = "^0.78"
deptry = { version = "^0.11.0", python = ">=3.8" }
deptry = "^0.11.0"

[tool.poetry.group.docs.dependencies]
sphinx = "^5.3.0"
Expand Down

0 comments on commit aa0ae15

Please sign in to comment.