mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-15 17:20:07 +01:00
Fix quoting
This commit is contained in:
@@ -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))
|
||||
|
||||
|
||||
@@ -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',
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user