-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/upgrade docusign library #4055
Conversation
This reverts commit 785a547.
This reverts commit 49daa49.
This reverts commit 5da8906.
Signed-off-by: Umesh Lumbhani <[email protected]>
Signed-off-by: Umesh Lumbhani <[email protected]>
Signed-off-by: Umesh Lumbhani <[email protected]>
Signed-off-by: Umesh Lumbhani <[email protected]>
Signed-off-by: Umesh Lumbhani <[email protected]>
Signed-off-by: Umesh Lumbhani <[email protected]>
.github/workflows/build-pr.yml
Outdated
@@ -51,8 +51,9 @@ jobs: | |||
- name: Python Setup | |||
working-directory: cla-backend | |||
run: | | |||
pip install --platform manylinux2014_x86_64 --only-binary=:all: --target=/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/site-packages cryptography |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
create another requirements file such that theres backward compatability. You can create requirements-docusign.txt with the docusign-esign==3.22.0 package and then add the pip install command for this specific file ie pip install --platform manylinux2014_x86_64 --platform manylinux2014_x86_64 --only-binary=:all: --target=/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/site-packages cryptography -r requirements-docusign.txt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@umeshlumbhani247 I have updated the code, please review the same,
Signed-off-by: Umesh Lumbhani <[email protected]>
cla-backend-go/Makefile
Outdated
@@ -77,7 +77,7 @@ setup-dev: | |||
echo "golangci-lint version:" && golangci-lint version | |||
|
|||
@echo "==> Installing multi-file-swagger tool..." | |||
cd $(dir $(realpath $(firstword $(MAKEFILE_LIST))))swagger && pip3 install virtualenv && virtualenv .venv && source .venv/bin/activate && python -m pip install --upgrade pip && pip3 install -r requirements.txt | |||
cd $(dir $(realpath $(firstword $(MAKEFILE_LIST))))swagger && pip3 install virtualenv && virtualenv .venv && source .venv/bin/activate && python -m pip install --upgrade pip && pip3 install --platform manylinux2014_x86_64 --only-binary=:all: --target=/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/site-packages cryptography -r requirements-docusign.txt && pip3 install -r requirements.txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leave this as is
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done @nickmango
Signed-off-by: Umesh Lumbhani <[email protected]>
No description provided.