Skip to content

Commit

Permalink
chg: Bump deps, allow python 3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Nov 23, 2023
1 parent f218f6e commit a45f917
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 73 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yml
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.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
12 changes: 12 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
[mypy]
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = false
strict_optional = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true

show_error_context = true
pretty = true

[mypy-docs.source.*]
ignore_errors = True
139 changes: 70 additions & 69 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ pdns = 'pypdns:main'
"Bug Tracker" = "https://github.com/CIRCL/PyPDNS/issues"

[tool.poetry.dependencies]
python = "^3.8.1"
requests-cache = "^1.1.0"
python = "^3.8"
requests-cache = "^1.1.1"
dnspython = "^2.4.2"
Sphinx = [
{version = "<7.2", python = "<3.9", optional = true},
{version = "^7.2", python = ">=3.9", optional = true}
]

[tool.poetry.group.dev.dependencies]
mypy = "^1.6.1"
mypy = "^1.7.0"
types-requests = "^2.31.0.10"
pytest = "^7.4.3"

Expand Down

0 comments on commit a45f917

Please sign in to comment.