Skip to content

Commit

Permalink
Drop Python 3.8 support (fox-it#149)
Browse files Browse the repository at this point in the history
As Python 3.8 is now officially EOL, minimal required version is now Python 3.9.
  • Loading branch information
yunzheng authored Oct 10, 2024
1 parent c4e5641 commit 62aff0f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 43 deletions.
40 changes: 0 additions & 40 deletions .github/workflows/compatibility.yml

This file was deleted.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "flow.record"
description = "A library for defining and creating structured data (called records) that can be streamed to disk or piped to other tools that use flow.record"
readme = "README.md"
requires-python = "~=3.8"
requires-python = "~=3.9"
license.text = "Affero General Public License v3"
authors = [
{name = "Dissect Team", email = "[email protected]"}
Expand All @@ -24,7 +24,6 @@ classifiers = [
]
dependencies = [
"msgpack>=0.5.2",
"backports.zoneinfo[tzdata]; python_version<'3.9'",
"tzdata; platform_system=='Windows'",
]
dynamic = ["version"]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ deps =
vermin
commands =
flake8 flow tests
vermin -t=3.8- --no-tips --lint --exclude zoneinfo flow tests
vermin --target=3.9 --no-tips --lint flow tests

[flake8]
max-line-length = 120
Expand Down

0 comments on commit 62aff0f

Please sign in to comment.