1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/testing/py3-clickclick/Remove-unused-six-from-setup_requires-1.patch
2022-10-07 07:02:30 +00:00

30 lines
1.1 KiB
Diff

From 119b22ada558837a567cdf7dee8d85100429bdf8 Mon Sep 17 00:00:00 2001
From: felixonmars <felixonmars@archlinux.org>
Date: Mon, 7 Feb 2022 10:14:46 +0100
Subject: [PATCH] Remove unused 'six' from setup_requires (#1)
Signed-off-by: felixonmars <felixonmars@noreply.codeberg.org>
Co-authored-by: felixonmars <felixonmars@noreply.codeberg.org>
Reviewed-on: https://codeberg.org/hjacobs/python-clickclick/pulls/1
Co-authored-by: felixonmars <felixonmars@archlinux.org>
Co-committed-by: felixonmars <felixonmars@archlinux.org>
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 803852f..46fb595 100755
--- a/setup.py
+++ b/setup.py
@@ -145,7 +145,7 @@ def setup_package():
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
package_data={MAIN_PACKAGE: ["*.json"]},
install_requires=install_reqs,
- setup_requires=['six', 'flake8'],
+ setup_requires=['flake8'],
cmdclass=cmdclass,
tests_require=['pytest-cov', 'pytest'],
command_options=command_options,
--
2.38.0