From c65d97c0fe51d3aa16d1b897eabcf93f9870011c Mon Sep 17 00:00:00 2001 From: mcgillij Date: Fri, 14 May 2021 20:47:35 -0300 Subject: [PATCH] Bump up Click version to current Arch version --- PKGBUILD | 7 ++++--- poetry.lock | 13 ++++++++----- pyproject.toml | 4 ++-- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 014b553..9b09d50 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,15 +3,16 @@ pkgname=amdfan pkgdesc="Python daemon for controlling the fans on amdgpu cards" -pkgver=0.1.10 +pkgver=0.1.11 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.10/amdfan-0.1.10.tar.gz") -md5sums=('4f17538ca73f004e75b0c805d680c1aa') +source=("amdfan-0.1.11.tar.gz") +#source=("https://github.com/mcgillij/amdfan/releases/download/0.1.11/amdfan-0.1.11.tar.gz") +md5sums=('6d0dde6f20e4b24964885a47d30f3059') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/poetry.lock b/poetry.lock index 0898fd8..82d072d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -65,11 +65,14 @@ d = ["aiohttp (>=3.3.2)", "aiohttp-cors"] [[package]] name = "click" -version = "7.1.2" +version = "8.0.0" description = "Composable command line interface toolkit" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.6" + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "colorama" @@ -363,7 +366,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pyt [metadata] lock-version = "1.1" python-versions = "^3.7 || ^3.8 || ^3.9" -content-hash = "f605225cd40b4c26c9651fbaccd809754e882def0081f6cac1b9f11fd5f84328" +content-hash = "1cfb8bfa42b8117b964c502e79092c0ba9830a75a3dfffe1b3fc4c8199f94e2f" [metadata.files] appdirs = [ @@ -386,8 +389,8 @@ black = [ {file = "black-20.8b1.tar.gz", hash = "sha256:1c02557aa099101b9d21496f8a914e9ed2222ef70336404eeeac8edba836fbea"}, ] click = [ - {file = "click-7.1.2-py2.py3-none-any.whl", hash = "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc"}, - {file = "click-7.1.2.tar.gz", hash = "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"}, + {file = "click-8.0.0-py3-none-any.whl", hash = "sha256:e90e62ced43dc8105fb9a26d62f0d9340b5c8db053a814e25d95c19873ae87db"}, + {file = "click-8.0.0.tar.gz", hash = "sha256:7d8c289ee437bcb0316820ccee14aefcb056e58d31830ecab8e47eda6540e136"}, ] colorama = [ {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, diff --git a/pyproject.toml b/pyproject.toml index bde55c1..8ce5c5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "amdfan" -version = "0.1.10" +version = "0.1.11" description = "Fan monitor and controller for AMD gpus in Linux" authors = ["mcgillij "] license = "GPL-2.0-only" @@ -27,7 +27,7 @@ include = [ "LICENSE", ] python = "^3.7 || ^3.8 || ^3.9" numpy = "^1.20.1" PyYAML = "^5.4.1" -click = "^7.1.2" +click = "^8.0.0" rich = "^10.1.0" [tool.poetry.dev-dependencies]