Skip to content

Commit

Permalink
build: exclude py3.8
Browse files Browse the repository at this point in the history
Signed-off-by: Isac Byeonghoon Yoo <[email protected]>
  • Loading branch information
isac322 committed Dec 20, 2023
1 parent 0c3f795 commit a12f5ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
pyver: ["3.8", "3.10", "3.12"]
pyver: ["3.9", "3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@ name = "plugbear"
authors = [{name = "Runbear", email = "[email protected]"}]
readme = "README.md"
dynamic = ["version", "description"]
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -51,7 +50,7 @@ asyncio_mode = "auto"

[tool.ruff]
line-length = 120
target-version = "py38"
target-version = "py39"

[tool.ruff.format]
# Like Black, use double quotes for strings.
Expand All @@ -65,7 +64,7 @@ line-ending = "auto"


[tool.mypy]
python_version = "3.8"
python_version = "3.9"
allow_redefinition = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
Expand Down

0 comments on commit a12f5ac

Please sign in to comment.