diff --git a/Makefile b/Makefile index 771a293d..3f07d43a 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,6 @@ build-dep-fedora: python3-certifi \ python3-hatch-vcs \ python3-hatchling \ - python3-PyMySQL \ python3-wheel \ python3-flake8 \ python3-isort \ @@ -63,6 +62,7 @@ build-dep-fedora: python3-types-requests \ python3-setuptools_scm \ rpmdevtools \ + ruff \ tar rpm: diff --git a/aiven-client.spec b/aiven-client.spec index 7e30273c..93f61f96 100644 --- a/aiven-client.spec +++ b/aiven-client.spec @@ -9,15 +9,7 @@ Summary: Aiven Client License: ASL 2.0 BuildArch: noarch BuildRequires: python3-devel -BuildRequires: python3dist(wheel) -BuildRequires: python3dist(hatchling) -BuildRequires: python3dist(hatch-vcs) -BuildRequires: python3dist(flake8) -BuildRequires: python3dist(mypy) BuildRequires: python3dist(pytest) -BuildRequires: python3dist(requests) -BuildRequires: python3dist(pymysql) -BuildRequires: python3dist(certifi) %description diff --git a/pyproject.toml b/pyproject.toml index a4d4d6a4..4802204d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,6 @@ dev = [ "pytest", # Lock isort to the same major version used in downstream build environments "isort>=6.1.0,<7.0", - "click", "ruff", ]