Browse Source

Update dependencies

upstream/backport/20220103
Ruben Verweij 3 years ago
committed by Lorenzo ZOLFANELLI
parent
commit
406e69ee8c
5 changed files with 7 additions and 6 deletions
  1. +1
    -1
      .travis.yml
  2. +1
    -1
      MANIFEST.in
  3. +1
    -1
      nd2reader/__init__.py
  4. +2
    -2
      requirements.txt
  5. +2
    -1
      setup.py

+ 1
- 1
.travis.yml View File

@ -11,10 +11,10 @@ notifications:
email: false
python:
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9
install:
- pip install --upgrade pip setuptools wheel


+ 1
- 1
MANIFEST.in View File

@ -1,6 +1,6 @@
include MANIFEST.in
include VERSION
include setup.py
include setup.cfg
include README.md
include LICENSE
include COPYING

+ 1
- 1
nd2reader/__init__.py View File

@ -4,7 +4,7 @@ from nd2reader.legacy import Nd2
try:
import importlib.metadata as importlib_metadata
except ModuleNotFoundError:
except:
import importlib_metadata
try:


+ 2
- 2
requirements.txt View File

@ -1,4 +1,4 @@
numpy>=1.9.2
numpy>=1.14
six>=1.4
xmltodict>=0.9.2
pims>=0.3.0
pims>=0.3.0

+ 2
- 1
setup.py View File

@ -7,11 +7,12 @@ if __name__ == '__main__':
name='nd2reader',
packages=['nd2reader'],
install_requires=[
'numpy>=1.6.2',
'numpy>=1.14',
'six>=1.4',
'xmltodict>=0.9.2',
'pims>=0.3.0'
],
python_requires=">=3.6",
version=VERSION,
description='A tool for reading ND2 files produced by NIS Elements',
author='Ruben Verweij',


Loading…
Cancel
Save