Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kratsg committed May 20, 2024
1 parent 97188d3 commit 7b59cc2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.12"]
python-version: ["3.8", "3.12"]
sys:
- { os: ubuntu-latest, shell: bash }
- { os: macos-latest, shell: bash }
Expand All @@ -46,7 +46,7 @@ jobs:
# python-version: 3.12

include:
- python-version: pypy-3.7
- python-version: pypy-3.8
sys: { os: ubuntu-latest, shell: bash }
experimental: false
#- python-version: "3.9"
Expand Down
8 changes: 3 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "pylibmagic"
dynamic = ["version"]
description = "scikit-build project with CMake for compiling libmagic"
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.8"
authors = [
{ name = "Giordon Stark", email = "[email protected]" },
]
Expand All @@ -20,7 +20,6 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -30,7 +29,6 @@ classifiers = [
]
dependencies = [
"importlib-resources;python_version<'3.9'",
"typing-extensions>=3.7;python_version<'3.8'",
]

[project.optional-dependencies]
Expand Down Expand Up @@ -104,7 +102,7 @@ log_cli_level = "INFO"

[tool.mypy]
files = "src"
python_version = "3.7"
python_version = "3.8"
warn_unused_configs = true
strict = true
show_error_codes = true
Expand Down Expand Up @@ -147,7 +145,7 @@ isort.required-imports = ["from __future__ import annotations"]
"noxfile.py" = ["T20"]

[tool.pylint]
master.py-version = "3.7"
master.py-version = "3.8"
master.ignore-paths= ["src/pylibmagic/_version.py"]
reports.output-format = "colorized"
similarities.ignore-imports = "yes"
Expand Down

0 comments on commit 7b59cc2

Please sign in to comment.