seatable-api 2.8.2__tar.gz → 3.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. {seatable-api-2.8.2 → seatable-api-3.0.0}/PKG-INFO +1 -3
  2. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api.egg-info/PKG-INFO +1 -3
  3. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api.egg-info/requires.txt +2 -2
  4. {seatable-api-2.8.2 → seatable-api-3.0.0}/setup.py +2 -2
  5. {seatable-api-2.8.2 → seatable-api-3.0.0}/LICENSE +0 -0
  6. {seatable-api-2.8.2 → seatable-api-3.0.0}/README.md +0 -0
  7. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/__init__.py +0 -0
  8. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/api_gateway.py +0 -0
  9. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/column.py +0 -0
  10. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/constants.py +0 -0
  11. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/context.py +0 -0
  12. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/convert_airtable.py +0 -0
  13. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/date_utils.py +0 -0
  14. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/exception.py +0 -0
  15. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/main.py +0 -0
  16. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/message.py +0 -0
  17. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/query.py +0 -0
  18. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/socket_io.py +0 -0
  19. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api/utils.py +0 -0
  20. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api.egg-info/SOURCES.txt +0 -0
  21. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api.egg-info/dependency_links.txt +0 -0
  22. {seatable-api-2.8.2 → seatable-api-3.0.0}/seatable_api.egg-info/top_level.txt +0 -0
  23. {seatable-api-2.8.2 → seatable-api-3.0.0}/setup.cfg +0 -0
  24. {seatable-api-2.8.2 → seatable-api-3.0.0}/tests/__init__.py +0 -0
  25. {seatable-api-2.8.2 → seatable-api-3.0.0}/tests/dateutils_test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: seatable-api
3
- Version: 2.8.2
3
+ Version: 3.0.0
4
4
  Summary: Python client for SeaTable web api
5
5
  Home-page: https://github.com/seatable/seatable-api-python
6
6
  Author: seatable
@@ -22,5 +22,3 @@ Chinese document: <https://seatable.github.io/seatable-scripts-cn/>
22
22
  pypi: <https://pypi.org/project/seatable-api/>
23
23
 
24
24
  github: <https://github.com/seatable/seatable-api-python>
25
-
26
-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: seatable-api
3
- Version: 2.8.2
3
+ Version: 3.0.0
4
4
  Summary: Python client for SeaTable web api
5
5
  Home-page: https://github.com/seatable/seatable-api-python
6
6
  Author: seatable
@@ -22,5 +22,3 @@ Chinese document: <https://seatable.github.io/seatable-scripts-cn/>
22
22
  pypi: <https://pypi.org/project/seatable-api/>
23
23
 
24
24
  github: <https://github.com/seatable/seatable-api-python>
25
-
26
-
@@ -1,4 +1,4 @@
1
- requests
2
- python-socketio<5
3
1
  ply
2
+ python-socketio>5
4
3
  python_dateutil
4
+ requests
@@ -1,6 +1,6 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
- __version__ = '2.8.2'
3
+ __version__ = '3.0.0'
4
4
 
5
5
  with open('README.md', 'r', encoding='utf-8') as fh:
6
6
  long_description = fh.read()
@@ -18,6 +18,6 @@ setup(
18
18
 
19
19
  platforms='any',
20
20
  packages=find_packages(), # folder with __init__.py
21
- install_requires=['requests', 'python-socketio<5', 'ply', 'python_dateutil'],
21
+ install_requires=['requests', 'python-socketio>5', 'ply', 'python_dateutil'],
22
22
  classifiers=['Programming Language :: Python'],
23
23
  )
File without changes
File without changes
File without changes