55 lines
1.7 KiB
Diff
55 lines
1.7 KiB
Diff
|
From a14fa9920669c8d6d911e375376f2e45052a31d6 Mon Sep 17 00:00:00 2001
|
||
|
From: Jordan Justen <jordan.l.justen@intel.com>
|
||
|
Date: Sat, 20 Jan 2024 01:07:23 -0800
|
||
|
Subject: [PATCH 1/2] intel/genxml: Drop "from __future__ import annotations"
|
||
|
|
||
|
This is not supported in Python 3.6, and optional in 3.7+.
|
||
|
|
||
|
Ref: f1eae2f8bbe ("python: drop python2 support")
|
||
|
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
|
||
|
---
|
||
|
src/intel/genxml/gen_sort_tags.py | 1 -
|
||
|
src/intel/genxml/genxml_import.py | 1 -
|
||
|
src/intel/genxml/intel_genxml.py | 1 -
|
||
|
3 files changed, 3 deletions(-)
|
||
|
|
||
|
diff --git a/src/intel/genxml/gen_sort_tags.py b/src/intel/genxml/gen_sort_tags.py
|
||
|
index dcdba333fe6..44cd152cd11 100755
|
||
|
--- a/src/intel/genxml/gen_sort_tags.py
|
||
|
+++ b/src/intel/genxml/gen_sort_tags.py
|
||
|
@@ -2,7 +2,6 @@
|
||
|
# Copyright © 2019, 2022 Intel Corporation
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
|
||
|
-from __future__ import annotations
|
||
|
import argparse
|
||
|
import copy
|
||
|
import intel_genxml
|
||
|
diff --git a/src/intel/genxml/genxml_import.py b/src/intel/genxml/genxml_import.py
|
||
|
index 76a7c77eb4c..442b4726d08 100755
|
||
|
--- a/src/intel/genxml/genxml_import.py
|
||
|
+++ b/src/intel/genxml/genxml_import.py
|
||
|
@@ -2,7 +2,6 @@
|
||
|
# Copyright © 2019, 2022 Intel Corporation
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
|
||
|
-from __future__ import annotations
|
||
|
import argparse
|
||
|
import copy
|
||
|
import intel_genxml
|
||
|
diff --git a/src/intel/genxml/intel_genxml.py b/src/intel/genxml/intel_genxml.py
|
||
|
index 2b7b4d8391a..9388ebecfce 100755
|
||
|
--- a/src/intel/genxml/intel_genxml.py
|
||
|
+++ b/src/intel/genxml/intel_genxml.py
|
||
|
@@ -2,7 +2,6 @@
|
||
|
# Copyright © 2019, 2022 Intel Corporation
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
|
||
|
-from __future__ import annotations
|
||
|
from collections import OrderedDict
|
||
|
import copy
|
||
|
import io
|
||
|
--
|
||
|
2.35.3
|
||
|
|