We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab7a8af commit 205f608Copy full SHA for 205f608
python/pom.xml
@@ -90,6 +90,24 @@
90
</arguments>
91
</configuration>
92
</execution>
93
+ <execution>
94
+ <id>python-install-wheel</id>
95
+ <phase>validate</phase>
96
+ <goals>
97
+ <goal>exec</goal>
98
+ </goals>
99
+ <configuration>
100
+ <executable>${python.venv.bin}${python.exe.bin}</executable>
101
+ <arguments>
102
+ <argument>-m</argument>
103
+ <argument>pip</argument>
104
+ <argument>install</argument>
105
+ <argument>--only-binary=:all:</argument>
106
+ <argument>--no-deps</argument>
107
+ <argument>${project.basedir}/dist/tsfile-*.whl</argument>
108
+ </arguments>
109
+ </configuration>
110
+ </execution>
111
<execution>
112
<id>compile-python-code</id>
113
<phase>compile</phase>
0 commit comments