Skip to content

Commit

Permalink
Merge 74f2742 into a2fde98
Browse files Browse the repository at this point in the history
  • Loading branch information
dnjohnstone committed Jul 16, 2019
2 parents a2fde98 + 74f2742 commit 6507ff6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Expand Up @@ -2,7 +2,6 @@ language: python

env:
global:
- DEPS="scipy matplotlib numpy tqdm transforms3d diffpy.structure"
- TEST_DEPS="pytest pytest-cov coveralls"

matrix:
Expand Down Expand Up @@ -34,7 +33,7 @@ before_install:
- df -h

install:
- conda install -y $DEPS $TEST_DEPS;
- conda install -y $TEST_DEPS;
- pip install .

script:
Expand Down
3 changes: 1 addition & 2 deletions appveyor.yml
Expand Up @@ -2,7 +2,6 @@
environment:

global:
DEPS: "scipy matplotlib numpy tqdm transforms3d diffpy.structure"
TEST_DEPS: "pytest"
MPLBACKEND: "agg"

Expand All @@ -26,7 +25,7 @@ install:
- "conda activate testenv"

# Install the dependencies of diffsims.
- 'conda install -yq %DEPS% %TEST_DEPS%'
- 'conda install -yq %TEST_DEPS%'

# Install our package
- 'pip install -e .'
Expand Down
9 changes: 6 additions & 3 deletions setup.py
Expand Up @@ -46,10 +46,13 @@
packages=find_packages(),
# adjust the tabbing
install_requires=[
'scikit-image == 0.15.0',
'matplotlib < 3.1.0',
'scipy>=0.15',
'numpy>=1.10',
'scikit-image==0.15.0',
'matplotlib==3.0.3',
'tqdm>=0.4.9',
'transforms3d',
'diffpy.structure >= 3.0.0' # First Python 3 support
'diffpy.structure>=3.0.0' # First Python 3 support
],
package_data={
"": ["LICENSE", "readme.rst", ],
Expand Down

0 comments on commit 6507ff6

Please sign in to comment.