Skip to content

Commit 96a101e

Browse files
authored
Merge pull request #3 from zoho/beta
4.0.0
2 parents f602e58 + bf8879d commit 96a101e

File tree

1,882 files changed

+221685
-33
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,882 files changed

+221685
-33
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ License
2424
limitations under the License.
2525

2626
## Latest Version
27+
28+
- [4.0.0](/versions/4.0.0/README.md)
29+
- Added `mysql-connector-python` as an optional dependency via `extras_require` in `setup.py`.
30+
- Users who require MySQL support can now install it using `pip install zohocrmsdk8-0[mysql]`
31+
2732
- [3.0.0](/versions/3.0.0/README.md)
2833
- ***trigger*** field has been added to the Notes API.
2934
- Improved Multi-User Initialization Handling in Initializer Class.

requirements.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
setuptools~=69.0.0
2-
requests~=2.31.0
3-
urllib3~=2.0.3
4-
python-dateutil~=2.8.2
5-
mysql-connector-python~=8.0.20
1+
setuptools~=70.0.0
2+
requests~=2.32.2
3+
urllib3~=2.5.0
4+
python-dateutil~=2.8.2

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name='zohocrmsdk8_0',
14-
version='3.0.0',
14+
version='4.0.0',
1515
description='Zoho CRM SDK for ZOHO CRM v8 APIs',
1616
long_description=long_description,
1717
long_description_content_type='text/markdown',
@@ -36,9 +36,11 @@
3636
'requests',
3737
'python-dateutil',
3838
'urllib3',
39-
'mysql-connector-python',
4039
'setuptools'
4140
],
41+
extras_require={
42+
'mysql': ['mysql-connector-python']
43+
},
4244
keywords=['development', 'zoho', 'crm', 'api', 'zcrmsdk', 'zohocrmsdk' 'sdk', 'zcrm','zohocrmsdk8_0'],
4345
packages=find_packages(),
4446
include_package_data=True,

0 commit comments

Comments
 (0)