Skip to content

Commit f015dce

Browse files
committed
Remove setup.py and improve travis configuration
1 parent 604bf1d commit f015dce

File tree

6 files changed

+24
-202
lines changed

6 files changed

+24
-202
lines changed

.dir-locals.el

-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
;;; For more information see (info "(emacs) Directory Variables")
33

44
((python-mode
5-
(flycheck-checker . python-pylint)
65
(mode . auto-revert)))

.travis.yml

+20-26
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,29 @@
11
language: python
22
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>"
98
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
1710
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
2912
script:
13+
# - poetry run flake8 my_package test
14+
# - poetry run coverage run --source=my_package -m unittest discover -b
3015
- 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
3126

32-
33-
# Calculate coverage
27+
## Calculate coverage
3428
after_success:
3529
- coveralls

pyphysim/simulations/results.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@
2323
try:
2424
# noinspection PyUnresolvedReferences
2525
import pandas as pd
26+
DataFrame = pd.DataFrame
2627
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
2830

2931
# One of SUMTYPE, RATIOTYPE, MISCTYPE or CHOICETYPE
3032
ResultType = int
@@ -1861,7 +1863,7 @@ def load_from_file(filename: str) -> "SimulationResults":
18611863
# fid.close()
18621864
# return simresults
18631865

1864-
def to_dataframe(self) -> pd.DataFrame:
1866+
def to_dataframe(self) -> DataFrame:
18651867
"""
18661868
Convert the SimulationResults object to a pandas DataFrame.
18671869
"""

requirements.txt

-19
This file was deleted.

setup.cfg

-25
This file was deleted.

setup.py

-129
This file was deleted.

0 commit comments

Comments
 (0)