We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2082762 commit ecf5d86Copy full SHA for ecf5d86
scapy-rpc/pyproject.toml
@@ -1,5 +1,5 @@
1
[build-system]
2
-requires = [ "setuptools>=62.0.0" ]
+requires = [ "setuptools>=77.0.0" ]
3
build-backend = "setuptools.build_meta"
4
5
[project]
@@ -10,7 +10,7 @@ authors = [
10
{ name="Gabriel POTTER" },
11
]
12
license = "GPL-2.0-only"
13
-requires-python = ">=3.7, <4"
+requires-python = ">=3.9, <4"
14
description = "Scapy RPC definitions"
15
classifiers = [
16
"Development Status :: 3 - Alpha",
scapy-rpc/setup.py
@@ -12,8 +12,8 @@
import os
import sys
-if sys.version_info[0] <= 2:
- raise OSError("Scapy RED doesn't support Python 2 !")
+if sys.version_info < (3, 9):
+ raise OSError("Scapy RED needs Python 3.9+ !")
17
18
try:
19
from setuptools import setup
0 commit comments