Fix quoting

This commit is contained in:
Robin Dunn
2019-06-03 19:33:09 -07:00
parent adcbad4969
commit 72a1868d3c
2 changed files with 16 additions and 16 deletions

View File

@@ -992,7 +992,7 @@ def updatePyprojectFile():
for line in open(tf).readlines():
line = line.strip()
if line[0] not in ['-', '#']:
output.write(' "{}",\n'.format(line))
output.write(" '{}',\n".format(line))
output.write(' ]\n')
msg("Updated {}".format(target))

View File

@@ -3,19 +3,19 @@
[build-system]
# Requirements for building and/or testing wxPython Phoenix
requires = [
"appdirs",
"setuptools",
"wheel",
"twine",
"sphinx==1.4.5",
"requests",
"pytest",
"pytest-xdist",
"pytest-timeout",
"pathlib2 ; python_version < "3"",
"backports.shutil_which ; python_version < "3"",
"textwrap3 ; python_version < "3"",
"numpy",
"pillow",
"six",
'appdirs',
'setuptools',
'wheel',
'twine',
'sphinx==1.4.5',
'requests',
'pytest',
'pytest-xdist',
'pytest-timeout',
'pathlib2 ; python_version < "3"',
'backports.shutil_which ; python_version < "3"',
'textwrap3 ; python_version < "3"',
'numpy',
'pillow',
'six',
]