forked from fox-it/flow.record
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop Python 3.8 support (fox-it#149)
As Python 3.8 is now officially EOL, minimal required version is now Python 3.9.
- Loading branch information
Showing
3 changed files
with
2 additions
and
43 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]"} | ||
|
@@ -24,7 +24,6 @@ classifiers = [ | |
] | ||
dependencies = [ | ||
"msgpack>=0.5.2", | ||
"backports.zoneinfo[tzdata]; python_version<'3.9'", | ||
"tzdata; platform_system=='Windows'", | ||
] | ||
dynamic = ["version"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters