Skip to content

Commit

Permalink
[Dependency] Remove direct reference for sphere (#3024)
Browse files Browse the repository at this point in the history
* [Dependency] Remove direct reference for sphere

The direct reference causes error in our pypi release: https://github.com/skypilot-org/skypilot/actions/runs/7638977430

* Update setup.py
  • Loading branch information
Michaelvll authored Jan 24, 2024
1 parent b36334c commit 47206ac
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sky/setup_files/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,12 @@ def parse_readme(readme: str) -> str:
'runpod': ['runpod>=1.5.1'],
'vsphere': [
'pyvmomi==8.0.1.0.2',
'vsphere-automation-sdk @ git+https://github.com/vmware/[email protected]'
# vsphere-automation-sdk is also required, but it does not have
# pypi release, which cause failure of our pypi release.
# https://peps.python.org/pep-0440/#direct-references
# We have the instruction for its installation in our
# docs instead.
# 'vsphere-automation-sdk @ git+https://github.com/vmware/[email protected]'
],
}

Expand Down

0 comments on commit 47206ac

Please sign in to comment.