Skip to content

Commit

Permalink
Make a test release on test pypi 1.5.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
auto-differentiation-dev committed Apr 4, 2024
1 parent 28e6696 commit f3c3dc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions build_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,9 @@ def get_vsvars_environment(architecture="amd64", toolset="14.3"):
"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools\\VC\\Auxiliary\\Build\\vcvarsall.bat", # VS2019 Build tools
]:
if os.path.isfile(vcvarsall):
string = f'("{vcvarsall}" {architecture} -vcvars_ver={toolset}>nul)&&"{python}" -c "import os; print(repr(os.environ))"'
print("running command:\n", string)
command = f'("{vcvarsall}" {architecture} -vcvars_ver={toolset}>nul)&&"{python}" -c "import os; print(repr(os.environ))"'
process = subprocess.Popen(
string,
command,
stdout=subprocess.PIPE,
shell=True,
)
Expand All @@ -83,7 +82,6 @@ def get_vsvars_environment(architecture="amd64", toolset="14.3"):
break
if not result:
raise Exception("Couldn't find/process vcvarsall batch file")
print(f"result is\n {result}")
return result


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

[tool.poetry]
name = "xad"
version = "1.5.1.1"
version = "1.5.1.2"
description = "High-Performance Automatic Differentiation for Python"
authors = ["Auto Differentiation Dev Team <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit f3c3dc1

Please sign in to comment.