Skip to content

Commit 3503d72

Browse files
committed
chore: drop support for Python 3.8
1 parent 1586728 commit 3503d72

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
17+
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
1818
os: [ ubuntu-latest, macos-latest, windows-latest ]
1919
runs-on: ${{ matrix.os }}
2020
steps:

.github/workflows/release.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ jobs:
100100
matrix:
101101
python-version:
102102
- cp39
103-
- pp38
104103
- pp39
105104
- pp310
106105
build:
@@ -140,7 +139,7 @@ jobs:
140139
- name: Install Python
141140
uses: actions/setup-python@v5
142141
with:
143-
python-version: '3.11'
142+
python-version: '3.12'
144143

145144
- run: rustup target add aarch64-apple-darwin x86_64-apple-darwin
146145
if: matrix.build == 'macos'

py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "maturin"
55
[project]
66
name = "yara-x"
77
description = "Python bindings for YARA-X"
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.9"
99
readme = "README.md"
1010
keywords = ["pattern-matching", "cybersecurity", "forensics", "malware", "yara"]
1111
classifiers = [

0 commit comments

Comments
 (0)