Skip to content

Commit 6d0d865

Browse files
WIP
1 parent 337e757 commit 6d0d865

File tree

2 files changed

+6
-18
lines changed

2 files changed

+6
-18
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: windows-2022
2424
strategy:
2525
matrix:
26-
python-version: [ 3.13, 3.14 ]
26+
python-version: [ 3.14 ]
2727

2828
steps:
2929

setup.py

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -64,29 +64,17 @@ def setup_package():
6464
if get_platform() == "Windows":
6565
metadata['package_data']['pilotlight'] = [
6666
"__init__.py",
67-
"pilotlight.pyd",
68-
"pilotlight.pyi",
69-
"pl_core.py",
70-
"pl_draw_ext.py",
71-
"pl_starter_ext.py",
72-
"pl_ui_ext.py",
73-
"pl_vfs_ext.py",
74-
"pl_pak_ext.py",
75-
"pl_shader_ext.py",
67+
"*.pyd",
68+
"*.py",
69+
"../../pilotlight/shaders/*.*",
7670
"spirv-cross-c-shared.dll"
7771
]
7872
else:
7973
metadata['package_data']['pilotlight'] = [
8074
"__init__.py",
8175
"pilotlight.so",
82-
"pilotlight.pyi",
83-
"pl_core.py",
84-
"pl_draw_ext.py",
85-
"pl_starter_ext.py",
86-
"pl_ui_ext.py",
87-
"pl_pak_ext.py",
88-
"pl_shader_ext.py",
89-
"pl_vfs_ext.py"
76+
"*.py",
77+
"../../pilotlight/shaders/*.*"
9078
]
9179

9280
if "--force" in sys.argv:

0 commit comments

Comments
 (0)