Skip to content

Commit

Permalink
Merge pull request pyFFTW#248 from grlee77/fix-wheel-upload-v2
Browse files Browse the repository at this point in the history
Fix windows wheel upload to bintray (v2)
  • Loading branch information
jakirkham authored Nov 15, 2018
2 parents 79293ef + 778f5b4 commit 1baad3f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions appveyor/deploy.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@

function deploy_to_bintray() {
$version_string = (iex "python -c `"import pyfftw; print(pyfftw.__version__)`"") | Out-String
$version_list = $version_string.Split("`r`n")
$short_version = [string]$version_list[0]
$version = [string]$version_list[2]
$version = $version_string -replace "`t|`n|`r",""
$short_version = [string]$version.Split("+")[0]

if ($env:PYTHON_ARCH -eq "32") {
$platform_suffix = "win32"
Expand Down

0 comments on commit 1baad3f

Please sign in to comment.