Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pyproject.toml to be PEP 621 compatible #320

Merged
merged 2 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
- name: Install required packages
run: |
apt update
apt install -y python3-poetry make
apt install -y make
pip install poetry
- name: Create virtual environment
run: make init
- name: Check code format
Expand All @@ -42,7 +43,8 @@ jobs:
- name: Install required packages
run: |
apt update
apt install -y python3-poetry make
apt install -y make
pip install poetry
- name: Create virtual environment
run: make init
- name: Check code import format
Expand All @@ -57,7 +59,8 @@ jobs:
- name: Install required packages
run: |
apt update
apt install -y python3-poetry make
apt install -y make
pip install poetry
- name: Create virtual environment
run: make init
- name: Check code style
Expand All @@ -72,7 +75,8 @@ jobs:
- name: Install required packages
run: |
apt update
apt install -y python3-poetry make libglib2.0-dev
apt install -y make libglib2.0-dev
pip install poetry
- name: Create virtual environment
run: make init
- name: Check code static typing
Expand All @@ -96,7 +100,8 @@ jobs:
- name: Install required packages
run: |
dnf makecache
dnf install -y gcc make poetry python python-pip python3-devel rpm-build systemd-devel which
dnf install -y gcc make python python-pip python3-devel rpm-build systemd-devel which
pip install poetry
- name: Create virtual environment
run: make init
- name: Check versions
Expand All @@ -115,7 +120,8 @@ jobs:
- name: Install required packages
run: |
apt update
apt install -y make python3-poetry
apt install -y make
pip install poetry
- name: Create virtual environment
run: make init
- name: Check versions
Expand Down
Loading
Loading