Skip to content

Commit

Permalink
Hotfix/v1.11.6 (#536)
Browse files Browse the repository at this point in the history
* Update setup.py

* Update __version__.py

Version update

* Update setup.py

* Update CHANGES
  • Loading branch information
jon-wobken committed Feb 28, 2022
1 parent 871ffd8 commit cfd191c
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 27 deletions.
8 changes: 8 additions & 0 deletions CHANGES
@@ -1,3 +1,11 @@
v1.11.5
======
Hotfix missing wsdl file

Bugs
--------
- Issue #533 Fix missing metadata.wsdl file

v1.11.5
======
Changes as of 2022-01-05
Expand Down
56 changes: 30 additions & 26 deletions setup.py
Expand Up @@ -19,36 +19,40 @@
author_email=about['__author_email__'],
maintainer=about['__maintainer__'],
maintainer_email=about['__maintainer_email__'],
packages=['simple_salesforce',],
packages=['simple_salesforce', ],
url=about['__url__'],
license=about['__license__'],
description=about['__description__'],
long_description=textwrap.dedent(open('README.rst', 'r').read()),
long_description_content_type='text/x-rst',
install_requires=[
'requests>=2.22.0',
'authlib',
'zeep'
],
tests_require=[
'nose>=1.3.0',
'pytz>=2014.1.1',
'responses>=0.5.1',
'cryptography<3.4',
],
test_suite='nose.collector',
keywords=about['__keywords__'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy'
package_data={
'simple_salesforce': ['metadata.wsdl'],
},
install_requires = [
'requests>=2.22.0',
'authlib',
'zeep'
],
tests_require = [
'nose>=1.3.0',
'pytz>=2014.1.1',
'responses>=0.5.1',
'cryptography<3.4',
],
test_suite = 'nose.collector',
keywords = about[
'__keywords__'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy'
]
)
2 changes: 1 addition & 1 deletion simple_salesforce/__version__.py
Expand Up @@ -5,7 +5,7 @@
__title__ = 'simple-salesforce'
__description__ = 'A basic Salesforce.com REST API client.'
__url__ = 'https://github.com/simple-salesforce/simple-salesforce'
__version__ = '1.11.5'
__version__ = '1.11.6'
__author__ = 'Nick Catalano'
__author_email__ = 'nickcatal@gmail.com'
__license__ = 'Apache 2.0'
Expand Down

0 comments on commit cfd191c

Please sign in to comment.