Skip to content

Commit

Permalink
CI checks with Python 311, removed 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jyejare authored and ogajduse committed Jan 12, 2023
1 parent 1bd2b35 commit dc3b9c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge_to_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: ['3.9', '3.10', '3.11']
steps:
- name: Checkout Robottelo
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: ['3.9', '3.10', '3.11']
steps:
- name: Checkout Robottelo
uses: actions/checkout@v3
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@
include_package_data=True,
license='GNU GPL v3.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
python_requires="~=3.6", # We run on 3.8, relaxed lower limit
python_requires="~=3.9",
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
),
)

0 comments on commit dc3b9c8

Please sign in to comment.