This commit is contained in:
oscar alvarez 2022-03-15 18:06:50 -05:00
parent 13d1ce23e7
commit b0f9250240
1 changed files with 2 additions and 9 deletions

View File

@ -6,10 +6,7 @@ from setuptools import setup
import re
import os
import io
try:
from configparser import ConfigParser
except ImportError:
from ConfigParser import ConfigParser
from configparser import ConfigParser
MODULE = 'crm'
PREFIX = 'trytonpsk'
@ -112,8 +109,4 @@ setup(name=name,
test_suite='tests',
test_loader='trytond.test_loader:Loader',
tests_require=tests_require,
use_2to3=True,
convert_2to3_doctests=[
'tests/scenario.rst',
],
)
)