parent
							
								
									6ac2165bf1
								
							
						
					
					
						commit
						3887ad102e
					
				
					 5 changed files with 8 additions and 8 deletions
				
			
		| 
						 | 
					@ -3,7 +3,7 @@
 | 
				
			||||||
The [Zulip API](https://zulip.com/api) Python bindings require the
 | 
					The [Zulip API](https://zulip.com/api) Python bindings require the
 | 
				
			||||||
following dependencies:
 | 
					following dependencies:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
* **Python (version >= 3.5)**
 | 
					* **Python (version >= 3.6)**
 | 
				
			||||||
* requests (version >= 0.12.1)
 | 
					* requests (version >= 0.12.1)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**Note**: If you'd like to use the Zulip bindings with Python 2, we
 | 
					**Note**: If you'd like to use the Zulip bindings with Python 2, we
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -40,12 +40,12 @@ package_info = dict(
 | 
				
			||||||
        'License :: OSI Approved :: Apache Software License',
 | 
					        'License :: OSI Approved :: Apache Software License',
 | 
				
			||||||
        'Topic :: Communications :: Chat',
 | 
					        'Topic :: Communications :: Chat',
 | 
				
			||||||
        'Programming Language :: Python :: 3',
 | 
					        'Programming Language :: Python :: 3',
 | 
				
			||||||
        'Programming Language :: Python :: 3.5',
 | 
					 | 
				
			||||||
        'Programming Language :: Python :: 3.6',
 | 
					        'Programming Language :: Python :: 3.6',
 | 
				
			||||||
        'Programming Language :: Python :: 3.7',
 | 
					        'Programming Language :: Python :: 3.7',
 | 
				
			||||||
        'Programming Language :: Python :: 3.8',
 | 
					        'Programming Language :: Python :: 3.8',
 | 
				
			||||||
 | 
					        'Programming Language :: Python :: 3.9',
 | 
				
			||||||
    ],
 | 
					    ],
 | 
				
			||||||
    python_requires='>=3.5',
 | 
					    python_requires='>=3.6',
 | 
				
			||||||
    url='https://www.zulip.org/',
 | 
					    url='https://www.zulip.org/',
 | 
				
			||||||
    project_urls={
 | 
					    project_urls={
 | 
				
			||||||
        "Source": "https://github.com/zulip/python-zulip-api/",
 | 
					        "Source": "https://github.com/zulip/python-zulip-api/",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,7 +20,7 @@ from typing import Any, Callable, Dict, Iterable, IO, List, Mapping, Optional, T
 | 
				
			||||||
__version__ = "0.7.1"
 | 
					__version__ = "0.7.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Ensure the Python version is supported
 | 
					# Ensure the Python version is supported
 | 
				
			||||||
assert sys.version_info >= (3, 5)
 | 
					assert sys.version_info >= (3, 6)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
logger = logging.getLogger(__name__)
 | 
					logger = logging.getLogger(__name__)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -38,12 +38,12 @@ package_info = dict(
 | 
				
			||||||
        'License :: OSI Approved :: Apache Software License',
 | 
					        'License :: OSI Approved :: Apache Software License',
 | 
				
			||||||
        'Topic :: Communications :: Chat',
 | 
					        'Topic :: Communications :: Chat',
 | 
				
			||||||
        'Programming Language :: Python :: 3',
 | 
					        'Programming Language :: Python :: 3',
 | 
				
			||||||
        'Programming Language :: Python :: 3.5',
 | 
					 | 
				
			||||||
        'Programming Language :: Python :: 3.6',
 | 
					        'Programming Language :: Python :: 3.6',
 | 
				
			||||||
        'Programming Language :: Python :: 3.7',
 | 
					        'Programming Language :: Python :: 3.7',
 | 
				
			||||||
        'Programming Language :: Python :: 3.8',
 | 
					        'Programming Language :: Python :: 3.8',
 | 
				
			||||||
 | 
					        'Programming Language :: Python :: 3.9',
 | 
				
			||||||
    ],
 | 
					    ],
 | 
				
			||||||
    python_requires='>=3.5',
 | 
					    python_requires='>=3.6',
 | 
				
			||||||
    url='https://www.zulip.org/',
 | 
					    url='https://www.zulip.org/',
 | 
				
			||||||
    project_urls={
 | 
					    project_urls={
 | 
				
			||||||
        "Source": "https://github.com/zulip/python-zulip-api/",
 | 
					        "Source": "https://github.com/zulip/python-zulip-api/",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -24,12 +24,12 @@ package_info = dict(
 | 
				
			||||||
        'License :: OSI Approved :: Apache Software License',
 | 
					        'License :: OSI Approved :: Apache Software License',
 | 
				
			||||||
        'Topic :: Communications :: Chat',
 | 
					        'Topic :: Communications :: Chat',
 | 
				
			||||||
        'Programming Language :: Python :: 3',
 | 
					        'Programming Language :: Python :: 3',
 | 
				
			||||||
        'Programming Language :: Python :: 3.5',
 | 
					 | 
				
			||||||
        'Programming Language :: Python :: 3.6',
 | 
					        'Programming Language :: Python :: 3.6',
 | 
				
			||||||
        'Programming Language :: Python :: 3.7',
 | 
					        'Programming Language :: Python :: 3.7',
 | 
				
			||||||
        'Programming Language :: Python :: 3.8',
 | 
					        'Programming Language :: Python :: 3.8',
 | 
				
			||||||
 | 
					        'Programming Language :: Python :: 3.9',
 | 
				
			||||||
    ],
 | 
					    ],
 | 
				
			||||||
    python_requires='>=3.5',
 | 
					    python_requires='>=3.6',
 | 
				
			||||||
    url='https://www.zulip.org/',
 | 
					    url='https://www.zulip.org/',
 | 
				
			||||||
    project_urls={
 | 
					    project_urls={
 | 
				
			||||||
        "Source": "https://github.com/zulip/python-zulip-api/",
 | 
					        "Source": "https://github.com/zulip/python-zulip-api/",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue