Skip to content

Commit

Permalink
chore: Adding support for Fedora 39
Browse files Browse the repository at this point in the history
- Updated the packit config yaml to include Fedora 39 builds
  for both x86_64 and ARM architectures.
- Bumped poetry and pyproject to use 3.12
  • Loading branch information
abellotti committed May 22, 2024
1 parent c099bc2 commit f38258c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
19 changes: 10 additions & 9 deletions .packit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,20 @@ jobs:
trigger: pull_request
targets: &targets_list
# we officially support rhel-8 and rhel-9 downstream.
- rhel-8-x86_64
- rhel-8-aarch64
# AAB - rhel-8-x86_64
# AAB - rhel-8-aarch64
- rhel-9-x86_64
- rhel-9-aarch64
# centos-stream is like a preview of upcoming rhel.
- centos-stream-8-x86_64
- centos-stream-8-aarch64
- centos-stream-9-x86_64
- centos-stream-9-aarch64
# AAB - centos-stream-8-x86_64
# AAB - centos-stream-8-aarch64
# AAB - centos-stream-9-x86_64
# AAB - centos-stream-9-aarch64
# fedora is like an even farther future preview.
- fedora-38-x86_64
- fedora-38-aarch64
# - fedora-39 # currently not supported due to python 3.11 vs 3.12 issues
# AAB - fedora-38-x86_64
# AAB - fedora-38-aarch64
- fedora-39-x86_64
- fedora-39-aarch64

- job: copr_build
trigger: commit
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
requires-python = ">=3.11, <3.12"
requires-python = ">=3.12, <3.13"

[tool.poetry]
name = "qpc"
Expand All @@ -17,7 +17,7 @@ exclude = [
qpc = 'qpc.__main__:main'

[tool.poetry.dependencies]
python = "~3.11"
python = "~3.12"
requests = ">=2.28.1"
cryptography = ">=37.0.4"
setuptools = "^67.8.0"
Expand Down

0 comments on commit f38258c

Please sign in to comment.