Skip to content

Commit 54d0cae

Browse files
author
Murilo Marinho
committed
1 parent 969b08b commit 54d0cae

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/python_package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: |
6060
pip install pybind11-stubgen
6161
pip install .
62-
pybind11-stubgen dqrobotics --output-dir .
62+
pybind11-stubgen dqrobotics --output-dir dqrobotics-stubs
6363
pip uninstall dqrobotics -y
6464
- name: Compile
6565
run: |

py.typed

Whitespace-only changes.

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,10 @@ def build_extension(self, ext):
7878
'dqrobotics.interfaces',
7979
'dqrobotics.interfaces.json11',
8080
'dqrobotics.robot_control',
81-
'dqrobotics.solvers'],
81+
'dqrobotics.solvers',
82+
'dqrobotics-stubs'],
8283
package_data={
83-
'dqrobotics': ['py.typed'],
84+
'dqrobotics-stubs': ["*.pyi"],
8485
},
8586
classifiers=[
8687
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)