Skip to content

Commit

Permalink
check 1
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Aug 2, 2020
1 parent 96cfbae commit d7611f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/WindowsDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
shell: cmd
run: |
cd Distribution
call "%dir%..\Dependencies\cpython\PCbuild\amd64\python.exe" "%dir%..\Distribution\BuildPythonWheel.py" /../cmake-build-release/DearPyGui/Release/dearpygui.pyd dearpygui.pyd
call "%dir%..\Dependencies\cpython\PCbuild\amd64\python.exe" "%dir%BuildPythonWheel.py" /../cmake-build-release/DearPyGui/Release/dearpygui.pyd dearpygui.pyd
call "%dir%..\Dependencies\cpython\PCbuild\amd64\python.exe" -m setup bdist_wheel --plat-name win_amd64 --dist-dir ../dist
call "%dir%..\Dependencies\cpython\PCbuild\win32\python.exe" "%dir%..\Distribution\BuildPythonWheel.py" /../cmake-build-release32/DearPyGui/Release/dearpygui.pyd dearpygui.pyd
call "%dir%..\Dependencies\cpython\PCbuild\win32\python.exe" "%dir%BuildPythonWheel.py" /../cmake-build-release32/DearPyGui/Release/dearpygui.pyd dearpygui.pyd
call "%dir%..\Dependencies\cpython\PCbuild\win32\python.exe" -m setup bdist_wheel --plat-name win32 --dist-dir ../dist
- name: Upload Test DearPyGui Wheel
Expand Down
3 changes: 3 additions & 0 deletions Distribution/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
DEARPYGUI_FILE = lines[0]
DEARPYGUI_VERSION = lines[1]

print("Setup File: ", DEARPYGUI_FILE)
print("Setup Version: ", DEARPYGUI_VERSION)


class BinaryDistribution(Distribution):
"""Distribution which always forces a binary package with platform name"""
Expand Down

0 comments on commit d7611f2

Please sign in to comment.