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
- Dropping Fedora38 support
  • Loading branch information
abellotti committed May 22, 2024
1 parent b967c77 commit c9b58fb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
5 changes: 2 additions & 3 deletions .packit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ jobs:
- centos-stream-9-x86_64
- 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
- fedora-39-x86_64
- fedora-39-aarch64

- job: copr_build
trigger: commit
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ To work with the qpc code, begin by cloning the repository:
git clone [email protected]:quipucords/qpc.git
```

qpc development requires Python 3.11 and Poetry. Install using your local pakage manager or manually from:
qpc development requires Python 3.12 and Poetry. Install using your local pakage manager or manually from:

* https://www.python.org/downloads/
* https://python-poetry.org/
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

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

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

[tool.poetry]
name = "qpc"
Expand All @@ -20,7 +22,7 @@ qpc = 'qpc.__main__:main'
python = ">=3.11,<3.13"
requests = ">=2.28.1"
cryptography = ">=37.0.4"
setuptools = "^67.8.0"
setuptools = ">=67.8.0"
faker = "^20.0.3"

[tool.poetry.group.dev.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions qpc.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%global __python3 /usr/bin/python3.11
%global python3_pkgversion 3.11
%global __python3 /usr/bin/python3.12
%global python3_pkgversion 3.12
Name: qpc
Summary: command-line client interface for quipucords

Expand Down

0 comments on commit c9b58fb

Please sign in to comment.