Skip to content

Commit

Permalink
Fix requirements, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianvf committed Feb 6, 2022
1 parent 550548b commit a403af9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion openshift/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

# Do not edit these constants. They will be updated automatically
# by scripts/update-version.sh.
__version__ = "0.13.0"
__version__ = "0.13.1"
__k8s_client_version__ = "21.7.0"
2 changes: 1 addition & 1 deletion python-openshift.spec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
%endif

Name: python-%{library}
Version: 0.13.0
Version: 0.13.1
Release: 1%{?dist}
Summary: Python client for the OpenShift API
License: ASL 2.0
Expand Down
6 changes: 1 addition & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
jinja2
kubernetes
kubernetes ~= 21.7.0
python-string-utils
ruamel.yaml
six
requests
requests-oauthlib
2 changes: 1 addition & 1 deletion scripts/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

# client version for packaging and releasing. It can
# be different than SPEC_VERSION.
CLIENT_VERSION = "0.13.0"
CLIENT_VERSION = "0.13.1"
KUBERNETES_CLIENT_VERSION = "21.7.0"

# Name of the release package
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

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

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

0 comments on commit a403af9

Please sign in to comment.