chore: update Python version to 3.11 in CI and project files; remove outdated CONTRIBUTING and SECURITY documents

This commit is contained in:
bohd4nx
2026-06-27 02:25:09 +03:00
parent 4539dc9803
commit ef831d12a0
10 changed files with 20 additions and 249 deletions
+1 -9
View File
@@ -1,18 +1,10 @@
from __future__ import annotations
import sys
from enum import Enum
from enum import StrEnum
from typing import Any
from tonutils.contracts.wallet import WalletHighloadV2, WalletHighloadV3R1, WalletV4R2, WalletV5R1
if sys.version_info >= (3, 11):
from enum import StrEnum
else:
class StrEnum(str, Enum): # noqa: F811
pass
class PaymentMethod(StrEnum):
GRAM = "ton"