Skip to content

Commit

Permalink
chore: drop support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Nov 29, 2024
1 parent 1586728 commit 3503d72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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
3 changes: 1 addition & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ jobs:
matrix:
python-version:
- cp39
- pp38
- pp39
- pp310
build:
Expand Down Expand Up @@ -140,7 +139,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'

- run: rustup target add aarch64-apple-darwin x86_64-apple-darwin
if: matrix.build == 'macos'
Expand Down
2 changes: 1 addition & 1 deletion py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "maturin"
[project]
name = "yara-x"
description = "Python bindings for YARA-X"
requires-python = ">=3.8"
requires-python = ">=3.9"
readme = "README.md"
keywords = ["pattern-matching", "cybersecurity", "forensics", "malware", "yara"]
classifiers = [
Expand Down

0 comments on commit 3503d72

Please sign in to comment.