14
0
forked from pool/python-Fabric

- Add patch remove-pathlib2.patch:

* Drop install_requires on pathlib2.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=77
This commit is contained in:
2022-08-08 08:11:20 +00:00
committed by Git OBS Bridge
parent 7e7f811650
commit f302edb6d9
3 changed files with 21 additions and 1 deletions

13
remove-pathlib2.patch Normal file
View File

@@ -0,0 +1,13 @@
Index: fabric-2.7.1/setup.py
===================================================================
--- fabric-2.7.1.orig/setup.py
+++ fabric-2.7.1/setup.py
@@ -65,7 +65,7 @@ setuptools.setup(
"CI": "https://app.circleci.com/pipelines/github/fabric/fabric",
"Twitter": "https://twitter.com/pyfabric",
},
- install_requires=["invoke>=1.3,<2.0", "paramiko>=2.4", "pathlib2"],
+ install_requires=["invoke>=1.3,<2.0", "paramiko>=2.4"],
extras_require={
"testing:python_version<='3.3'": testing_deps,
"pytest:python_version<='3.3'": testing_deps + pytest_deps,