You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would like to use wheel based artifacts instead of tar for dependency resolution. For some python packages that are dependent on native libraries, it is always better to use wheels since these libraries are bundled together inside a wheel package.
Pivy importer is able to download the wheel file and create ivy based configuration using the below command.
pivy-importer-0.12.10-all.jar --repo /pypi-ivy/repo confluent-kafka:1.5.0:cp37-cp37m-macosx_10_6_intel
In our build.gradle we are trying something like below
The problem is resolving the dependency for different environments such as windows/linux/mac. In the above, it will be helpful if we can also provide classifier information "cp37-cp37m-macosx_10_6_intel" similar to the above command as pivy. The classifier can be used to resolve the correct directory path for different environments in ivy artifactory
The text was updated successfully, but these errors were encountered:
We would like to use wheel based artifacts instead of tar for dependency resolution. For some python packages that are dependent on native libraries, it is always better to use wheels since these libraries are bundled together inside a wheel package.
Pivy importer is able to download the wheel file and create ivy based configuration using the below command.
pivy-importer-0.12.10-all.jar --repo /pypi-ivy/repo confluent-kafka:1.5.0:cp37-cp37m-macosx_10_6_intel
In our build.gradle we are trying something like below
The problem is resolving the dependency for different environments such as windows/linux/mac. In the above, it will be helpful if we can also provide classifier information "cp37-cp37m-macosx_10_6_intel" similar to the above command as pivy. The classifier can be used to resolve the correct directory path for different environments in ivy artifactory
The text was updated successfully, but these errors were encountered: