Skip to content

Commit

Permalink
upload run
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Sep 28, 2020
1 parent 2bcc92f commit 4932438
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set(MVDIST_ONLY ${MVDIST_ONLY})
set(MV37DIST ${MV37DIST})

add_definitions(-D_USE_MATH_DEFINES)
add_definitions(-DMV_SANDBOX_VERSION="0.4.0b11")
add_definitions(-DMV_SANDBOX_VERSION="0.4.0b12")


if(MVDIST_ONLY)
Expand Down
1 change: 1 addition & 0 deletions Distribution/BuildPythonWheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
shutil.copy(location, script_dir +"/dearpygui")
shutil.copy(script_dir + "/../DearPyGui/dearpygui/core.pyi", script_dir + "/dearpygui")
shutil.copy(script_dir + "/../DearPyGui/dearpygui/simple.py", script_dir + "/dearpygui")
shutil.copy(script_dir + "/../DearPyGui/dearpygui/demo.py", script_dir + "/dearpygui")

with open(script_dir + "/dearpygui/__init__.py", 'w') as file:
file.write("pass\n")
Expand Down
2 changes: 1 addition & 1 deletion Distribution/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def has_ext_modules(foo):
],
packages=find_packages(exclude=['contrib', 'docs', 'tests']), # Required
package_data={ # Optional
'dearpygui': [DEARPYGUI_FILE, "core.pyi", "simple.py"],
'dearpygui': [DEARPYGUI_FILE, "core.pyi", "simple.py", "demo.py"],
},
distclass=BinaryDistribution
)

0 comments on commit 4932438

Please sign in to comment.