File tree 6 files changed +24
-202
lines changed
6 files changed +24
-202
lines changed Original file line number Diff line number Diff line change 2
2
; ;; For more information see (info "(emacs) Directory Variables")
3
3
4
4
((python-mode
5
- (flycheck-checker . python-pylint)
6
5
(mode . auto-revert)))
Original file line number Diff line number Diff line change 1
1
language : python
2
2
python :
3
- - " 3.6"
4
-
5
- notifications :
6
- email : false
7
-
8
- # Setup anaconda
3
+ - 3.6
4
+ # env:
5
+ # global:
6
+ # - secure: "<encrypted MYPYPI_USER=username>"
7
+ # - secure: "<encrypted MYPYPI_PASS=p@ssword>"
9
8
before_install :
10
- - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
11
- - bash miniconda.sh -b -p $HOME/miniconda
12
- - export PATH="$HOME/miniconda/bin:$PATH"
13
- - hash -r
14
- - conda config --set always_yes yes --set changeps1 no
15
- - conda update -q conda
16
- # command to install dependencies
9
+ - pip install poetry
17
10
install :
18
- # Useful for debugging any issues with conda
19
- - conda info -a
20
-
21
- # Replace dep1 dep2 ... with your dependencies
22
- - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib nose Cython pyzmq pandas h5py ipyparallel
23
- - source activate test-environment
24
- # Install packages not available in conda using pip
25
- - pip install configobj
26
- - pip install python-coveralls
27
- - pip install .
28
- # command to run tests
11
+ - poetry install
29
12
script :
13
+ # - poetry run flake8 my_package test
14
+ # - poetry run coverage run --source=my_package -m unittest discover -b
30
15
- nosetests --with-coverage --cover-package=pyphysim tests/
16
+ # before_deploy:
17
+ # - poetry config repositories.mypypi http://mypypi.example.com/simple
18
+ # - poetry config http-basic.mypypi $MYPYPI_USER $MYPYPI_PASS
19
+ # - poetry build -f sdist
20
+ # deploy:
21
+ # provider: script
22
+ # script: poetry publish -r mypypi
23
+ # skip_cleanup: true
24
+ # on:
25
+ # tags: true
31
26
32
-
33
- # Calculate coverage
27
+ # # Calculate coverage
34
28
after_success :
35
29
- coveralls
Original file line number Diff line number Diff line change 23
23
try :
24
24
# noinspection PyUnresolvedReferences
25
25
import pandas as pd
26
+ DataFrame = pd .DataFrame
26
27
except ImportError : # pragma: no cover
27
- pass
28
+ # This will be used just for type checking, since pandas is not installed
29
+ from typing import Any as DataFrame
28
30
29
31
# One of SUMTYPE, RATIOTYPE, MISCTYPE or CHOICETYPE
30
32
ResultType = int
@@ -1861,7 +1863,7 @@ def load_from_file(filename: str) -> "SimulationResults":
1861
1863
# fid.close()
1862
1864
# return simresults
1863
1865
1864
- def to_dataframe (self ) -> pd . DataFrame :
1866
+ def to_dataframe (self ) -> DataFrame :
1865
1867
"""
1866
1868
Convert the SimulationResults object to a pandas DataFrame.
1867
1869
"""
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments