Skip to content

Commit

Permalink
Merge pull request #10 from mcgillij/typing
Browse files Browse the repository at this point in the history
updated to use mypy typechecking
  • Loading branch information
mcgillij authored Nov 7, 2021
2 parents b977d5e + f4ace5f commit d8730a9
Show file tree
Hide file tree
Showing 6 changed files with 249 additions and 46 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ jobs:
- name: Test with pytest
run: |
poetry run pytest
- name: Test with mypy
run: |
poetry run mypy src/
6 changes: 3 additions & 3 deletions PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

pkgname=amdfan
pkgdesc="Python daemon for controlling the fans on amdgpu cards"
pkgver=0.1.12
pkgver=0.1.13
pkgrel=1
arch=('any')
license=('GPL2')
depends=('python' 'python-yaml' 'python-numpy' 'python-rich' 'python-click')
makedepends=('python-setuptools')
url="https://github.com/mcgillij/amdfan"
source=("https://github.com/mcgillij/amdfan/releases/download/0.1.12/amdfan-0.1.12.tar.gz")
md5sums=('f83ef18f1af4ac8eede0d6dc3211356b')
source=("https://github.com/mcgillij/amdfan/releases/download/0.1.13/amdfan-0.1.13.tar.gz")
md5sums=('6317e5c964d0965fc73bc4ab8b2945df')

build() {
cd "$srcdir/$pkgname-$pkgver"
Expand Down
Loading

0 comments on commit d8730a9

Please sign in to comment.