Skip to content

Commit c40c9eb

Browse files
author
serazing
committed
Checking versionneer and install
1 parent cf3ee73 commit c40c9eb

File tree

9 files changed

+390
-293
lines changed

9 files changed

+390
-293
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
xscale/_version.py export-subst

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include versioneer.py
2+
include xscale/_version.py

ci/requirements-py27-dev.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name: test_env
22
dependencies:
33
- python=2.7
4-
- numpy==1.11.0
5-
- scipy==0.17.0
4+
- numpy
5+
- scipy
66
- netcdf4
7-
- pandas==0.18.0
8-
- xarray==0.7.2
9-
- dask==0.9.0
10-
- bottleneck==1.0.0
11-
- numba==0.26.0
7+
- pandas
8+
- xarray
9+
- dask
10+
- bottleneck
11+
- numba
12+
- matplotlib
1213
- pip:
1314
- pytest-cov

ci/requirements-py27-min.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: test_env
22
dependencies:
33
- python=2.7
44
- numpy==1.11.0
5-
- scipy==0.17.1
5+
- scipy==0.18.0
66
- pandas==0.18.0
7-
- dask==0.9.0
8-
- xarray==0.7.2
7+
- dask==0.12.0
8+
- xarray==0.8.2
9+
- numba==0.30.0
10+
- matplotlib==1.5.3
911
- pip:
1012
- pytest-cov

setup.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
from setuptools import setup
55
import versioneer
66

7-
DISTNAME = 'xarray'
7+
DISTNAME = 'xscale'
88
PACKAGES = ['xscale', 'xscale.filtering', 'xscale.signal', 'xscale.spectral']
99
TESTS = [p + '.tests' for p in PACKAGES]
10-
INSTALL_REQUIRES = ['numpy >= 1.7', 'pandas >= 0.15.0', 'xarray >=0.8'
11-
'dask >=0.12.0', 'numba >= 0.30.0', 'scipy >= 0.18.0']
10+
INSTALL_REQUIRES = ['numpy >= 1.7', 'scipy >= 0.18.0', 'xarray >= 0.8.2',
11+
'dask >= 0.12.0', 'numba >= 0.30.0', ]
1212
TESTS_REQUIRE = ['pytest >= 2.7.1']
1313

1414
URL = 'http://github.com/serazing/xscale'
@@ -17,9 +17,12 @@
1717
LICENSE = 'Apache'
1818
DESCRIPTION = 'Signal processing tools based on xarray and dask'
1919

20+
VERSION = versioneer.get_version()
21+
CMDCLASS = versioneer.get_cmdclass()
22+
2023
setup(name=DISTNAME,
21-
version=versioneer.get_version(),
22-
cmdclass=versioneer.get_cmdclass(),
24+
version=VERSION,
25+
cmdclass=CMDCLASS,
2326
description=DESCRIPTION,
2427
url=URL,
2528
author=AUTHOR,

0 commit comments

Comments
 (0)