python-anyjson/fix-do-not-use-2to3.patch

26 lines
515 B
Diff
Raw Normal View History

From 4571581397f0a8ff0a579c105901292cfef656e2 Mon Sep 17 00:00:00 2001
From: wu-leilei <wu18740459704@163.com>
Date: Tue, 8 Feb 2022 17:00:49 +0800
Subject: [PATCH] do not use 2to3
---
setup.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/setup.py b/setup.py
index 9fe4902..f2098e1 100644
--- a/setup.py
+++ b/setup.py
@@ -2,8 +2,6 @@ import os
import sys
extra = {}
-if sys.version_info >= (3, 0):
- extra.update(use_2to3=True)
try:
from setuptools import setup, find_packages
--
2.23.0