Skip to content

Commit

Permalink
Merge pull request #49 from ilcardella/add-pipenv
Browse files Browse the repository at this point in the history
Add pipenv
  • Loading branch information
ilcardella committed Sep 7, 2019
2 parents a825246 + 6aad0c5 commit e904ea3
Show file tree
Hide file tree
Showing 113 changed files with 25,562 additions and 252 deletions.
13 changes: 6 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
language: python

python:
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "3.8-dev"
- "nightly"

cache: pip

# command to install dependencies
install:
- pip install -r requirements.txt
- export PIPENV_IGNORE_VIRTUALENVS=1
- pipenv install --three --dev

# command to run tests
script:
- ./trading_mate_ctrl test
- pipenv run pytest
- pipenv run sphinx-build -nWT -b dummy doc doc/_build/html
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Issue37 - Improved installation process and dependencies setup
- Updated default .credentials configured path
- Added Pipfile to manage python dependencies

## [1.0.0] 2019-05-03
### Added
Expand Down
16 changes: 16 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
sphinx-rtd-theme = "==0.4.3"
requests-mock = "==1.7.0"
pytest = "==5.0.1"
docutils = "==0.15.2"
m2r = "==0.2.1"
Sphinx = "==2.0.1"

[packages]
requests = "==2.22.0"
alpha_vantage = "==2.1.0"

0 comments on commit e904ea3

Please sign in to comment.