File: 0001-Remove-dependency-form-unittest2.patch

package info (click to toggle)
python-geotiepoints 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,916 kB
  • sloc: python: 2,904; makefile: 127; sh: 7
file content (22 lines) | stat: -rw-r--r-- 633 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Antonio Valentino <antonio.valentino@tiscali.it>
Date: Sun, 23 Dec 2018 09:54:30 +0000
Subject: Remove dependency form unittest2

It is not necessary for python3 packages
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 9a2eba4..61cc46d 100644
--- a/setup.py
+++ b/setup.py
@@ -33,7 +33,7 @@ import versioneer
 
 requirements = ['numpy', 'scipy', 'pandas'],
 # unittest2 is required by h5py 2.8.0rc:
-test_requires = ['h5py', 'unittest2', 'xarray', 'dask']
+test_requires = ['h5py', 'xarray', 'dask']
 
 if sys.platform.startswith("win"):
     extra_compile_args = []