summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-07-27 11:45:06 +0000
committerGerrit Code Review <review@openstack.org>2022-07-27 11:45:06 +0000
commit60dd6e62574d7e4812a07f853e37f1c1b2d61b50 (patch)
tree9c60afcfc5a847844eb084f69c289ce9d10d7056
parentb3ae3f555225d724bd6493fe4a08ea84a05a673f (diff)
parent4e769f0ed02eb9b5179258483cc9b08efe81842b (diff)
downloadpython-openstackclient-60dd6e62574d7e4812a07f853e37f1c1b2d61b50.tar.gz
Merge "Drop support for Python 3.6, 3.7"
-rw-r--r--.zuul.yaml8
-rw-r--r--Dockerfile4
-rw-r--r--setup.cfg4
3 files changed, 7 insertions, 9 deletions
diff --git a/.zuul.yaml b/.zuul.yaml
index 8a98767e..98e2ed72 100644
--- a/.zuul.yaml
+++ b/.zuul.yaml
@@ -189,8 +189,8 @@
description: Build Docker images.
allowed-projects: openstack/python-openstackclient
requires:
- - python-builder-3.7-container-image
- - python-base-3.7-container-image
+ - python-builder-3.9-container-image
+ - python-base-3.9-container-image
provides: osc-container-image
vars: &osc_image_vars
docker_images:
@@ -203,8 +203,8 @@
description: Build Docker images and upload to Docker Hub.
allowed-projects: openstack/python-openstackclient
requires:
- - python-builder-3.7-container-image
- - python-base-3.7-container-image
+ - python-builder-3.9-container-image
+ - python-base-3.9-container-image
provides: osc-container-image
secrets:
- name: docker_credentials
diff --git a/Dockerfile b/Dockerfile
index bf5de3c7..90f7fd3b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,12 +13,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM docker.io/opendevorg/python-builder:3.7 as builder
+FROM docker.io/opendevorg/python-builder:3.9 as builder
COPY . /tmp/src
RUN assemble
-FROM docker.io/opendevorg/python-base:3.7
+FROM docker.io/opendevorg/python-base:3.9
COPY --from=builder /output/ /output
RUN /output/install-from-bindep
diff --git a/setup.cfg b/setup.cfg
index b5c376fa..7efb9de4 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -6,7 +6,7 @@ description_file =
author = OpenStack
author_email = openstack-discuss@lists.openstack.org
home_page = https://docs.openstack.org/python-openstackclient/latest/
-python_requires = >=3.6
+python_requires = >=3.8
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology
@@ -15,8 +15,6 @@ classifier =
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9