Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump requests from 2.31.0 to 2.32.0 #262

Merged
merged 3 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pylama==7.7.1
pytest==7.1.2
python-decouple==3.4
PyYAML==6.0.1
requests==2.31.0
requests==2.32.0
six==1.15.0
snowballstemmer==2.1.0
typing-extensions==4.0.1
Expand Down
10 changes: 4 additions & 6 deletions src/core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,25 @@
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=[
"commentjson~=0.9.0",
"deepmerge~=1.1.0",
"jsonschema~=4.17.3",
"pyyaml~=6.0.1",
"requests~=2.31.0",
"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
Loading