From 786da02bce4ff5178a92fafad7368760ddad271b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Va=C5=A1ina?= Date: Mon, 24 Jul 2023 09:53:39 +0200 Subject: [PATCH] Remove Python 3.9 support from robottelo (#11953) * Remove 3.9 support from robottelo * Update setup.py --- .github/workflows/pull_request.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 972c1960983..cc58fb9177a 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11'] steps: - name: Checkout Robottelo uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index f3a682641fc..e173ae35c1e 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ include_package_data=True, license='GNU GPL v3.0', # See https://pypi.python.org/pypi?%3Aaction=list_classifiers - python_requires="~=3.9", + python_requires="~=3.10", classifiers=( 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',