From d2cfef88bede6006eeb14fe32dcc405695b3136b Mon Sep 17 00:00:00 2001 From: Mikhail Naletov <36846182+okgolove@users.noreply.github.com> Date: Tue, 12 Dec 2023 19:24:33 +0200 Subject: [PATCH] chore: bump python version (#45) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/rftest.yaml | 2 +- setup.py | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rftest.yaml b/.github/workflows/rftest.yaml index 00f4740..eae7d2a 100644 --- a/.github/workflows/rftest.yaml +++ b/.github/workflows/rftest.yaml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] steps: - name: Checkout diff --git a/setup.py b/setup.py index 810e1ee..f741c63 100644 --- a/setup.py +++ b/setup.py @@ -6,9 +6,9 @@ PACKAGE = 'robotframework-jenkins' DESCRIPTION = '''Library for Robot Framework for Jenkins interaction''' REQUIREMENTS = [ - 'python-jenkins>=1.*', - 'robotframework>=3.*', - 'requests>=2.*' + 'python-jenkins>=1.0', + 'robotframework>=3.0', + 'requests>=2.0' ] with open('README.md') as f: @@ -19,7 +19,6 @@ License :: OSI Approved :: MIT License Operating System :: OS Independent Programming Language :: Python -Programming Language :: Python :: 2 Programming Language :: Python :: 3 Topic :: Software Development :: Testing Framework :: Robot Framework