Compare commits
No commits in common. "67e6d0b69078e78241ce40187e408e813a7fd7c9" and "a0ccde5a04ac8cd608c7d714d0900afe2042190b" have entirely different histories.
67e6d0b690
...
a0ccde5a04
3 changed files with 12 additions and 17 deletions
|
@ -11,26 +11,20 @@ jobs:
|
||||||
# matrix:
|
# matrix:
|
||||||
# python-version: ["3.8.17", "3.9.17", "3.10.12", "3.11.4"]
|
# python-version: ["3.8.17", "3.9.17", "3.10.12", "3.11.4"]
|
||||||
steps:
|
steps:
|
||||||
- name: Install package dependencies
|
- name: Install Package-based Deps
|
||||||
run: |
|
run: |
|
||||||
echo "Making DNF more performant with these directives:"
|
|
||||||
echo -e 'max_parallel_downloads=20\ndeltarpm=False\nfastestmirror=False' | tee -a /etc/dnf/dnf.conf
|
echo -e 'max_parallel_downloads=20\ndeltarpm=False\nfastestmirror=False' | tee -a /etc/dnf/dnf.conf
|
||||||
dnf -yq install nodejs git python3-pip python3-virtualenv
|
dnf -yq install nodejs git pylint python3-pip
|
||||||
|
dnf clean all
|
||||||
# - name: "Set up Python ${{ matrix.python-version }}"
|
# - name: "Set up Python ${{ matrix.python-version }}"
|
||||||
# uses: https://github.com/actions/setup-python@v3
|
# uses: https://github.com/actions/setup-python@v3
|
||||||
# with:
|
# with:
|
||||||
# python-version: ${{ matrix.python-version }}
|
# python-version: ${{ matrix.python-version }}
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Install Python dependencies
|
- name: Install Python Deps
|
||||||
run: |
|
run: |
|
||||||
python3 -m venv venv
|
python -m pip install --upgrade pip
|
||||||
source venv/bin/activate
|
pip install -r requirements.txt
|
||||||
python3 -m pip install --upgrade pip
|
|
||||||
python3 -m pip install --upgrade wheel
|
|
||||||
python3 -m pip install pylint
|
|
||||||
python3 -m pip install --no-compile -r requirements.txt
|
|
||||||
- name: Analysing the code with pylint
|
- name: Analysing the code with pylint
|
||||||
run: |
|
run: |
|
||||||
source venv/bin/activate
|
|
||||||
python3 -m pip list
|
|
||||||
pylint $(git ls-files '*.py')
|
pylint $(git ls-files '*.py')
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
# amdgpu_stats
|
# amdgpu_stats
|
||||||
|

|
||||||
|
|
||||||
A Python module/TUI for AMD GPU statistics
|
A Python module/TUI for AMD GPU statistics
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
Tested _only_ on `RX6000` series cards; APUs and more _may_ be supported. Please file an issue if finding incompatibility!
|
Tested _only_ on `RX6000` series cards; APUs and more _may_ be supported. Please file an issue if finding incompatibility!
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
textual>=0.32.0
|
textual>=0.16.0
|
||||||
humanfriendly==10.0
|
humanfriendly==10.0
|
||||||
rich>=13.3.3
|
pyyaml==6.0
|
||||||
|
|
Reference in a new issue