summaryrefslogtreecommitdiff
path: root/tests/testdata
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2021-12-22 16:30:41 +0200
committerAlex Grönholm <alex.gronholm@nextday.fi>2021-12-22 16:30:41 +0200
commitfa4de8bd7dce1611be217ade3aade0bd8c76ca7a (patch)
tree621e55e88d3861bea1dc2c42ea0eae87b5930b89 /tests/testdata
parent45af6b0f420b7a90af417b3846b0bdfe1c6a70d4 (diff)
downloadwheel-git-fa4de8bd7dce1611be217ade3aade0bd8c76ca7a.tar.gz
Upgraded to py3.7+ syntax
Diffstat (limited to 'tests/testdata')
-rw-r--r--tests/testdata/abi3extension.dist/setup.py2
-rw-r--r--tests/testdata/complex-dist/setup.py4
-rw-r--r--tests/testdata/extension.dist/setup.py2
-rw-r--r--tests/testdata/headers.dist/setup.py2
-rw-r--r--tests/testdata/simple.dist/setup.py2
-rw-r--r--tests/testdata/unicode.dist/setup.py2
6 files changed, 7 insertions, 7 deletions
diff --git a/tests/testdata/abi3extension.dist/setup.py b/tests/testdata/abi3extension.dist/setup.py
index 3ffd839..e9a08df 100644
--- a/tests/testdata/abi3extension.dist/setup.py
+++ b/tests/testdata/abi3extension.dist/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, Extension
setup(name='extension.dist',
version='0.1',
- description=u'A testing distribution \N{SNOWMAN}',
+ description='A testing distribution \N{SNOWMAN}',
ext_modules=[
Extension(name='extension',
sources=['extension.c'],
diff --git a/tests/testdata/complex-dist/setup.py b/tests/testdata/complex-dist/setup.py
index 41cfb04..632ae3f 100644
--- a/tests/testdata/complex-dist/setup.py
+++ b/tests/testdata/complex-dist/setup.py
@@ -2,8 +2,8 @@ from setuptools import setup
setup(name='complex-dist',
version='0.1',
- description=u'Another testing distribution \N{SNOWMAN}',
- long_description=u'Another testing distribution \N{SNOWMAN}',
+ description='Another testing distribution \N{SNOWMAN}',
+ long_description='Another testing distribution \N{SNOWMAN}',
author="Illustrious Author",
author_email="illustrious@example.org",
url="http://example.org/exemplary",
diff --git a/tests/testdata/extension.dist/setup.py b/tests/testdata/extension.dist/setup.py
index ae22525..c9bf948 100644
--- a/tests/testdata/extension.dist/setup.py
+++ b/tests/testdata/extension.dist/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, Extension
setup(name='extension.dist',
version='0.1',
- description=u'A testing distribution \N{SNOWMAN}',
+ description='A testing distribution \N{SNOWMAN}',
ext_modules=[
Extension(name='extension',
sources=['extension.c'])
diff --git a/tests/testdata/headers.dist/setup.py b/tests/testdata/headers.dist/setup.py
index 67cada3..2c7d7ea 100644
--- a/tests/testdata/headers.dist/setup.py
+++ b/tests/testdata/headers.dist/setup.py
@@ -2,6 +2,6 @@ from setuptools import setup
setup(name='headers.dist',
version='0.1',
- description=u'A distribution with headers',
+ description='A distribution with headers',
headers=['header.h']
)
diff --git a/tests/testdata/simple.dist/setup.py b/tests/testdata/simple.dist/setup.py
index d2aaac9..81b26cd 100644
--- a/tests/testdata/simple.dist/setup.py
+++ b/tests/testdata/simple.dist/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
setup(name='simple.dist',
version='0.1',
- description=u'A testing distribution \N{SNOWMAN}',
+ description='A testing distribution \N{SNOWMAN}',
packages=['simpledist'],
extras_require={'voting': ['beaglevote']},
)
diff --git a/tests/testdata/unicode.dist/setup.py b/tests/testdata/unicode.dist/setup.py
index 3382b53..221088e 100644
--- a/tests/testdata/unicode.dist/setup.py
+++ b/tests/testdata/unicode.dist/setup.py
@@ -2,6 +2,6 @@ from setuptools import setup
setup(name='unicode.dist',
version='0.1',
- description=u'A testing distribution \N{SNOWMAN}',
+ description='A testing distribution \N{SNOWMAN}',
packages=['unicodedist']
)