Skip to content

Commit

Permalink
PKG more requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Apr 16, 2019
1 parent 6fd10e2 commit fa0c82e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ before_script:
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH=$HOME/miniconda/bin:$PATH
- export PY_ENV=travis-$TRAVIS_PYTHON_VERSION
- conda create -y -n $PY_ENV -c lightsource2-tag python=$TRAVIS_PYTHON_VERSION numpy requests coverage docopt databroker
- conda create -y -n $PY_ENV -c lightsource2-tag -c defaults python=$TRAVIS_PYTHON_VERSION numpy requests coverage docopt databroker pandas xlrd
- source activate $PY_ENV
- which pip
- which python
Expand Down
2 changes: 1 addition & 1 deletion apstools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
__package_name__ = __project__
__long_description__ = __description__

__install_requires__ = ('databroker')
__install_requires__ = ('databroker', 'pandas', 'xlrd')
__install_requires__ = () # TODO: for conda build now
__classifiers__ = [
'Development Status :: 5 - Production/Stable',
Expand Down
4 changes: 4 additions & 0 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,16 @@ requirements:
- databroker
- bluesky
- pyRestTable
- pandas
- xlrd
run:
- python
- ophyd
- databroker
- bluesky
- pyRestTable
- pandas
- xlrd

test:
imports:
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ versioneer
coverage
coveralls
pyRestTable
pandas
xlrd
1 change: 0 additions & 1 deletion tests/test_excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

import apstools.utils


class Test_Demo3(unittest.TestCase):

xl_file = os.path.join(PATH, "demo3.xlsx")
Expand Down

0 comments on commit fa0c82e

Please sign in to comment.