Added podman dependency for Fedora

This commit is contained in:
Gaurav Sitlani 2020-03-11 10:12:06 +05:30
parent d519303150
commit 6207d37537
2 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@ Create a .deb:
Install dependencies: Install dependencies:
```sh ```sh
sudo dnf install -y rpm-build python3 python3-qt5 python3-appdirs python3-click python3-pyxdg python3-requests sudo dnf install -y rpm-build python3 python3-qt5 python3-appdirs python3-click python3-pyxdg python3-requests podman
``` ```
Run from source tree: Run from source tree:

View file

@ -39,7 +39,7 @@ def main():
"python3", "python3",
"setup.py", "setup.py",
"bdist_rpm", "bdist_rpm",
"--requires=python3-qt5,python3-appdirs,python3-click,python3-pyxdg,python3-requests", "--requires=python3-qt5,python3-appdirs,python3-click,python3-pyxdg,python3-requests,podman",
] ]
) )