Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ License
limitations under the License.

## Latest Version

- [4.0.0](/versions/4.0.0/README.md)
- Added `mysql-connector-python` as an optional dependency via `extras_require` in `setup.py`.
- Users who require MySQL support can now install it using `pip install zohocrmsdk8-0[mysql]`

- [3.0.0](/versions/3.0.0/README.md)
- ***trigger*** field has been added to the Notes API.
- Improved Multi-User Initialization Handling in Initializer Class.
Expand Down
9 changes: 4 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
setuptools~=69.0.0
requests~=2.31.0
urllib3~=2.0.3
python-dateutil~=2.8.2
mysql-connector-python~=8.0.20
setuptools~=70.0.0
requests~=2.32.2
urllib3~=2.5.0
python-dateutil~=2.8.2
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name='zohocrmsdk8_0',
version='3.0.0',
version='4.0.0',
description='Zoho CRM SDK for ZOHO CRM v8 APIs',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -36,9 +36,11 @@
'requests',
'python-dateutil',
'urllib3',
'mysql-connector-python',
'setuptools'
],
extras_require={
'mysql': ['mysql-connector-python']
},
keywords=['development', 'zoho', 'crm', 'api', 'zcrmsdk', 'zohocrmsdk' 'sdk', 'zcrm','zohocrmsdk8_0'],
packages=find_packages(),
include_package_data=True,
Expand Down
Loading
Loading