-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from cloudify-cosmo/2.0.23-build
bump-common
- Loading branch information
Showing
8 changed files
with
61 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
if [[ $PY311 == 1 ]] | ||
then | ||
mkdir -p ./pydoc | ||
touch ./pydoc/__init__.py | ||
cat <<EOF > ./pydoc/__init__.py | ||
def get_doc(*args): | ||
return '' | ||
EOF | ||
mkdir -p ./webbrowser | ||
touch ./webbrowser/__init__.py | ||
cat <<EOF > ./webbrowser/__init__.py | ||
EOF | ||
git apply python311.patch | ||
echo patch applied | ||
fi |
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 +1 @@ | ||
version = '2.0.22' | ||
version = '2.0.23' |
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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
diff --git a/constraints.txt b/constraints.txt | ||
index 6d405fb..e69de29 100644 | ||
--- a/constraints.txt | ||
+++ b/constraints.txt | ||
@@ -1 +0,0 @@ | ||
-cryptography==3.2.1 | ||
diff --git a/dev-requirements.txt b/dev-requirements.txt | ||
index e69de29..be35a02 100644 | ||
--- a/dev-requirements.txt | ||
+++ b/dev-requirements.txt | ||
@@ -0,0 +1 @@ | ||
+-e fusion-common | ||
\ No newline at end of file | ||
diff --git a/setup.py b/setup.py | ||
index 38c63a7..6669719 100644 | ||
--- a/setup.py | ||
+++ b/setup.py | ||
@@ -15,7 +15,7 @@ | ||
import os | ||
import re | ||
import pathlib | ||
-from setuptools import setup | ||
+from setuptools import setup, find_packages | ||
|
||
|
||
def get_version(): | ||
@@ -31,11 +31,11 @@ setup( | ||
version=get_version(), | ||
author='Cloudify', | ||
author_email='[email protected]', | ||
- packages=['fabric_plugin'], | ||
+ packages=find_packages(), | ||
license='LICENSE', | ||
description='Plugin for remotely running fabric tasks and commands', | ||
install_requires=[ | ||
- 'cloudify-common>=4.5.5', | ||
+ 'fusion-common', | ||
'fabric2==2.5.0', | ||
] | ||
) |
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