Skip to content

Commit a45f917

Browse files
committed
chg: Bump deps, allow python 3.8.
1 parent f218f6e commit a45f917

File tree

4 files changed

+86
-73
lines changed

4 files changed

+86
-73
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.10", "3.11", "3.12"]
1616

1717
steps:
1818
- uses: actions/checkout@v3

mypy.ini

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
[mypy]
2+
check_untyped_defs = true
3+
ignore_errors = false
4+
ignore_missing_imports = false
5+
strict_optional = true
6+
no_implicit_optional = true
7+
warn_unused_ignores = true
8+
warn_redundant_casts = true
9+
warn_unused_configs = true
10+
warn_unreachable = true
11+
12+
show_error_context = true
13+
pretty = true
214

315
[mypy-docs.source.*]
416
ignore_errors = True

poetry.lock

Lines changed: 70 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ pdns = 'pypdns:main'
3131
"Bug Tracker" = "https://github.com/CIRCL/PyPDNS/issues"
3232

3333
[tool.poetry.dependencies]
34-
python = "^3.8.1"
35-
requests-cache = "^1.1.0"
34+
python = "^3.8"
35+
requests-cache = "^1.1.1"
3636
dnspython = "^2.4.2"
3737
Sphinx = [
3838
{version = "<7.2", python = "<3.9", optional = true},
3939
{version = "^7.2", python = ">=3.9", optional = true}
4040
]
4141

4242
[tool.poetry.group.dev.dependencies]
43-
mypy = "^1.6.1"
43+
mypy = "^1.7.0"
4444
types-requests = "^2.31.0.10"
4545
pytest = "^7.4.3"
4646

0 commit comments

Comments
 (0)