Skip to content

Commit

Permalink
Drop Python 3.7 support since requests 2.32 requires 3.8
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed May 23, 2024
1 parent ac46773 commit da2a9c9
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sdk-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pip install -U --pre zowe.core-for-zowe-sdk[secrets]

Ensure the following prerequisites are installed and on your PATH:

- Python >= 3.7 and `pip`
- Python >= 3.8 and `pip`
- Cargo >= 1.72 (to build Rust bindings for Secrets SDK)
- Visual Studio Build Tools >= 2015 (Windows only)

Expand Down
8 changes: 3 additions & 5 deletions src/core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
name="zowe_core_for_zowe_sdk",
version=__version__,
description="Zowe Python SDK - Core package",
long_description=open("README.md", 'r').read(),
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/zowe/zowe-client-python-sdk",
author="Guilherme Cartier",
author_email="[email protected]",
license="EPL-2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
],
install_requires=[
Expand All @@ -29,8 +29,6 @@
"requests~=2.32.0",
"urllib3~=1.26.18",
],
extras_require={
"secrets": [resolve_sdk_dep("secrets", "~=" + __version__)]
},
extras_require={"secrets": [resolve_sdk_dep("secrets", "~=" + __version__)]},
packages=find_namespace_packages(include=["zowe.*"]),
)
4 changes: 2 additions & 2 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ def resolve_sdk_dep(sdk_name, version_spec):
name="zowe",
version=__version__,
description="Zowe Python SDK",
long_description=open("../README.md", 'r').read(),
long_description=open("../README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/zowe/zowe-client-python-sdk",
author="Guilherme Cartier",
author_email="[email protected]",
license="EPL-2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
],
install_requires=[
Expand Down
4 changes: 2 additions & 2 deletions src/zos_console/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
name="zowe_zos_console_for_zowe_sdk",
version=__version__,
description="Zowe Python SDK - z/OS Console package",
long_description=open("README.md", 'r').read(),
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/zowe/zowe-client-python-sdk",
author="Guilherme Cartier",
author_email="[email protected]",
license="EPL-2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
],
install_requires=[resolve_sdk_dep("core", "~=" + __version__)],
Expand Down
4 changes: 2 additions & 2 deletions src/zos_files/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
name="zowe_zos_files_for_zowe_sdk",
version=__version__,
description="Zowe Python SDK - z/OS Files package",
long_description=open("README.md", 'r').read(),
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/zowe/zowe-client-python-sdk",
author="Guilherme Cartier",
author_email="[email protected]",
license="EPL-2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
],
install_requires=[resolve_sdk_dep("core", "~=" + __version__)],
Expand Down
4 changes: 2 additions & 2 deletions src/zos_jobs/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
name="zowe_zos_jobs_for_zowe_sdk",
version=__version__,
description="Zowe Python SDK - z/OS Jobs package",
long_description=open("README.md", 'r').read(),
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/zowe/zowe-client-python-sdk",
author="Guilherme Cartier",
author_email="[email protected]",
license="EPL-2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
],
install_requires=[resolve_sdk_dep("core", "~=" + __version__)],
Expand Down
4 changes: 2 additions & 2 deletions src/zos_tso/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
name="zowe_zos_tso_for_zowe_sdk",
version=__version__,
description="Zowe Python SDK - z/OS TSO package",
long_description=open("README.md", 'r').read(),
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/zowe/zowe-client-python-sdk",
author="Guilherme Cartier",
author_email="[email protected]",
license="EPL-2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
],
install_requires=[resolve_sdk_dep("core", "~=" + __version__)],
Expand Down
4 changes: 2 additions & 2 deletions src/zosmf/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
name="zowe_zosmf_for_zowe_sdk",
version=__version__,
description="Zowe Python SDK - z/OSMF package",
long_description=open("README.md", 'r').read(),
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/zowe/zowe-client-python-sdk",
author="Guilherme Cartier",
author_email="[email protected]",
license="EPL-2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
],
install_requires=[resolve_sdk_dep("core", "~=" + __version__)],
Expand Down

0 comments on commit da2a9c9

Please sign in to comment.