forked from xapi-project/xen-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed shebang from XenAPI.py and XenAPIPlugin.py as they are librar…
…y code. - Removed shebang from XenAPI.py and XenAPIPlugin.py - Modified setup.cfg of python_requires version - Removed unused `dune clean` command from python Makefile Co-authored-by: Pau Ruiz Safont <psafont@users.noreply.github.com> Signed-off-by: Stephen Cheng <stephen.cheng@cloud.com>
- Loading branch information
1 parent
fcd2edf
commit 2e883b7
Showing
4 changed files
with
1 addition
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/python3 | ||
# Copyright (c) Citrix Systems, Inc. | ||
# All rights reserved. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,4 @@ classifiers = | |
|
||
[options] | ||
packages = find: | ||
python_requires = >=3.6.*, <4 | ||
python_requires = >=3.6, <4 |