Skip to content

Commit

Permalink
Version 3.25.2 release (#183)
Browse files Browse the repository at this point in the history
* Version 3.25.2-v2.1-23.3.01.02 release

* Updated setup.py

Signed-off-by: Mudit Garg <[email protected]>

* Update CHANGELOG.md

Signed-off-by: Mudit Garg <[email protected]>

---------

Signed-off-by: Mudit Garg <[email protected]>
Co-authored-by: root <[email protected]>
  • Loading branch information
garg-mudit and root authored Dec 15, 2023
1 parent 573d489 commit d6c4ff4
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 49 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.

## [v3.25.2] - eSignature API v2.1-23.3.01.02 - 2023-12-15
### Changed
- Added support for version v2.1-23.3.01.02 of the DocuSign ESignature API.
- Updated the SDK release version.

## [v3.25.1] - eSignature API v2.1-23.3.01.02 - 2023-12-14
### Changed
- Added support for version v2.1-23.3.01.02 of the DocuSign ESignature API.
Expand Down
96 changes: 48 additions & 48 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# coding: utf-8

# coding: utf-8

"""
DocuSign REST API
Expand All @@ -9,49 +9,49 @@
Contact: [email protected]
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""


from setuptools import setup, find_packages, Command, os # noqa: H301

NAME = "docusign-esign"
VERSION = "3.25.1"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = ["urllib3 >= 1.15", "six >= 1.8.0", "certifi >= 14.05.14", "python-dateutil >= 2.5.3", "setuptools >= 21.0.0", "PyJWT>=1.7.1", "cryptography>=2.5", "nose>=1.3.7"]

class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')

this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()


setup(
name=NAME,
version=VERSION,
description="DocuSign REST API",
author_email="[email protected]",
url="",
keywords=["Swagger", "DocuSign REST API"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
cmdclass={
'clean': CleanCommand,
},
long_description=long_description,
long_description_content_type='text/markdown'
)


from setuptools import setup, find_packages, Command, os # noqa: H301

NAME = "docusign-esign"
VERSION = "3.25.2"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = ["urllib3 >= 1.15", "six >= 1.8.0", "certifi >= 14.05.14", "python-dateutil >= 2.5.3", "setuptools >= 21.0.0", "PyJWT>=1.7.1", "cryptography>=2.5", "nose>=1.3.7"]

class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')

this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()


setup(
name=NAME,
version=VERSION,
description="DocuSign REST API",
author_email="[email protected]",
url="",
keywords=["Swagger", "DocuSign REST API"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
cmdclass={
'clean': CleanCommand,
},
long_description=long_description,
long_description_content_type='text/markdown'
)
2 changes: 1 addition & 1 deletion test/unit_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ def testTemplateDocumentTabsRetrieval(self):
template_documents_list_result = templates_api.list_documents(self.user_info.accounts[0].account_id, template_id)

# Check if there are no documents within the template
has_template_documents = template_documents_list_result is None or template_documents_list_result.template_documents is None or len(template_documents_list_result.template_documents) == 0
has_template_documents = template_documents_list_result is not None and template_documents_list_result.template_documents is not None and len(template_documents_list_result.template_documents) > 0
assert has_template_documents, 'No document found within created template'

document_id = template_documents_list_result.template_documents[0].document_id
Expand Down

0 comments on commit d6c4ff4

Please sign in to comment.