Skip to content

Commit a403af9

Browse files
committed
Fix requirements, version bump
1 parent 550548b commit a403af9

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

openshift/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515
# Do not edit these constants. They will be updated automatically
1616
# by scripts/update-version.sh.
17-
__version__ = "0.13.0"
17+
__version__ = "0.13.1"
1818
__k8s_client_version__ = "21.7.0"

python-openshift.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
%endif
1717

1818
Name: python-%{library}
19-
Version: 0.13.0
19+
Version: 0.13.1
2020
Release: 1%{?dist}
2121
Summary: Python client for the OpenShift API
2222
License: ASL 2.0

requirements.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
jinja2
2-
kubernetes
1+
kubernetes ~= 21.7.0
32
python-string-utils
4-
ruamel.yaml
53
six
6-
requests
7-
requests-oauthlib

scripts/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
# client version for packaging and releasing. It can
2525
# be different than SPEC_VERSION.
26-
CLIENT_VERSION = "0.13.0"
26+
CLIENT_VERSION = "0.13.1"
2727
KUBERNETES_CLIENT_VERSION = "21.7.0"
2828

2929
# Name of the release package

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
# Do not edit these constants. They will be updated automatically
2626
# by scripts/update-client.sh.
27-
CLIENT_VERSION = "0.13.0"
27+
CLIENT_VERSION = "0.13.1"
2828
PACKAGE_NAME = "openshift"
2929
DEVELOPMENT_STATUS = "3 - Alpha"
3030

@@ -46,7 +46,7 @@ def extract_requirements(filename):
4646
license="Apache License Version 2.0",
4747
url="https://github.com/openshift/openshift-restclient-python",
4848
keywords=["Swagger", "OpenAPI", "Kubernetes", "OpenShift"],
49-
install_requires=extract_requirements('requirements.txt'),
49+
install_requires=['kubernetes >= 12.0', 'python-string-utils', 'six'],
5050
packages=find_packages(include='openshift.*'),
5151
long_description='Python client for OpenShift http://openshift.redhat.com/',
5252
classifiers=[

0 commit comments

Comments
 (0)