Remove Python 3.7 support.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
a9607dfdf9
commit
98e23bdfd4
5 changed files with 7 additions and 10 deletions
6
.github/workflows/zulip-tests.yml
vendored
6
.github/workflows/zulip-tests.yml
vendored
|
@ -13,10 +13,10 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Set up Python 3.7
|
- name: Set up Python 3.8
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: "3.7"
|
python-version: "3.8"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: tools/provision --force
|
run: tools/provision --force
|
||||||
|
@ -32,7 +32,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest]
|
os: [ubuntu-latest, windows-latest]
|
||||||
python-version: ["3.7", "3.8", "3.9", "3.10"]
|
python-version: ["3.8", "3.9", "3.10"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
|
@ -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.7)**
|
* **Python (version >= 3.8)**
|
||||||
* 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
|
||||||
|
|
|
@ -42,12 +42,11 @@ setup(
|
||||||
"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.7",
|
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
],
|
],
|
||||||
python_requires=">=3.7",
|
python_requires=">=3.8",
|
||||||
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/",
|
||||||
|
|
|
@ -34,12 +34,11 @@ setup(
|
||||||
"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.7",
|
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
],
|
],
|
||||||
python_requires=">=3.7",
|
python_requires=">=3.8",
|
||||||
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/",
|
||||||
|
|
|
@ -22,12 +22,11 @@ setup(
|
||||||
"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.7",
|
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
],
|
],
|
||||||
python_requires=">=3.7",
|
python_requires=">=3.8",
|
||||||
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
Reference in a new issue