Skip to content

Commit

Permalink
Drop Python 3.8 Support
Browse files Browse the repository at this point in the history
  • Loading branch information
titusz committed Dec 7, 2023
1 parent f5290a6 commit 75a46fd
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 51 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
python-version: [3.9, '3.10', '3.11', '3.12']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
87 changes: 41 additions & 46 deletions poetry.lock

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

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ classifiers=[
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Sound/Audio",
Expand All @@ -43,7 +43,7 @@ idk = 'iscc_sdk.cli:app'


[tool.poetry.dependencies]
python = ">=3.8,<4.0"
python = ">=3.9,<4.0"
cython = "*"
iscc-core = "^1.0"
iscc-schema = "^0.4"
Expand All @@ -54,7 +54,7 @@ platformdirs = "^3.1"
jmespath = "^1.0"
Pillow = "*"
pytaglib = "^2.0"
numpy = "^1.22"
numpy = "^1.25"
pymupdf = "^1.21"
ebookmeta = "^1.2"
python-docx = "^0.8"
Expand All @@ -80,7 +80,7 @@ griffe = "<0.27.4"
[tool.black]
skip-string-normalization = false
line-length = 100
target-version = ['py38']
target-version = ['py39']

[tool.coverage.run]
omit = ["iscc_sdk/install.py"]
Expand Down

0 comments on commit 75a46fd

Please sign in to comment.