Skip to content

Commit

Permalink
Skip 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
steinitzu committed Feb 5, 2024
1 parent 345add8 commit cb7e7b6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 3 additions & 2 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[mypy]
# Specify the target platform details in config, so your developers are
# free to run mypy on Windows, Linux, or macOS and get consistent
# results.
python_version=3.8
# results
python_version=3.9
platform=linux

# Follow imports but not show errors in other files
Expand Down Expand Up @@ -33,6 +33,7 @@ warn_unused_ignores=False
disallow_untyped_defs=False
check_untyped_defs=True


[mypy-urlobject.*]
ignore_missing_imports = True

Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

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

13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,15 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
urlobject = "^2"
typing-extensions = "^4.9.0"

[tool.poetry.dev-dependencies]

[tool.poetry.group.dev.dependencies]
snapshottest = "^0.6.0"
pluggy = "^1.4.0"
types-requests = "^2.31.0.20240125"
pytest = "^7.0"
flake8 = "^3.6"
mypy = "^1"
Expand All @@ -44,11 +48,6 @@ astor = "^0.7.1"
pytest-asyncio = "^0.23.4"
sphinxcontrib-asyncio = "^0.2.0"

[tool.poetry.group.dev.dependencies]
snapshottest = "^0.6.0"
pluggy = "^1.4.0"
types-requests = "^2.31.0.20240125"

[tool.black]
line-length = 79

Expand Down

0 comments on commit cb7e7b6

Please sign in to comment.