Skip to content

Commit

Permalink
Add Python 3.12 to supported versions
Browse files Browse the repository at this point in the history
Python 3.12 is out and should be supported by Robottelo. Also switched
the weekly workflow to use Python 3.12 instead of 3.11.
  • Loading branch information
JacobCallahan committed Jan 11, 2024
1 parent 8f7fe94 commit d185934
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
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.10', '3.11']
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Checkout Robottelo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
python-version: [3.12]
steps:
- name: Checkout Robottelo
uses: actions/checkout@v4
Expand Down
7 changes: 6 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Version updates managed by dependabot

betelgeuse==1.11.0
broker[docker]==0.4.1
# broker[docker]==0.4.1 - Temporarily disabled, see below
cryptography==41.0.7
deepdiff==6.7.1
dynaconf[vault]==3.2.4
Expand Down Expand Up @@ -30,4 +30,9 @@ wrapanapi==3.6.0
# Get airgun, nailgun and upgrade from master
git+https://github.com/SatelliteQE/airgun.git@master#egg=airgun
git+https://github.com/SatelliteQE/nailgun.git@master#egg=nailgun
# Broker currently is unable to push to PyPi due to [1] and [2]
# In the meantime, we install directly from the repo
# [1] - https://github.com/ParallelSSH/ssh2-python/issues/193
# [2] - https://github.com/pypi/warehouse/issues/7136
git+https://github.com/SatelliteQE/[email protected]#egg=broker
--editable .

0 comments on commit d185934

Please sign in to comment.