Skip to content

Commit

Permalink
Merge pull request #1929 from finos/fix-python-windows-publish
Browse files Browse the repository at this point in the history
Fix python `_requires_python` publish script on windows
  • Loading branch information
texodus authored Aug 2, 2022
2 parents 99c1061 + 4cd7f97 commit fe5ac9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/_requires_python.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const {
} = require("./script_utils.js");

let PYTHON = python_version();
const requires_script = `'import distutils.core; setup = distutils.core.run_setup("python/perspective/setup.py"); print(" ".join(["\\"" + requirement + "\\"" for requirement in setup.extras_require["dev"]]))'`;
const requires_script = `"import distutils.core; setup = distutils.core.run_setup('python/perspective/setup.py'); print(' '.join(['\\\"' + requirement + '\\\"' for requirement in setup.extras_require['dev']]))"`;

(async () => {
try {
Expand Down

0 comments on commit fe5ac9b

Please sign in to comment.