Merge pull request #1 from hydrosquall/master

Bringing Fork Up-To-Date
This commit is contained in:
GenusGeoff
2021-03-08 22:42:11 -05:00
committed by GitHub
9 changed files with 23 additions and 24 deletions

View File

@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['2.7', '3.6', '3.7']
python-version: ['3.6', '3.7', '3.8']
WITH_PANDAS: [false, true]
steps:
@@ -43,5 +43,5 @@ jobs:
TIINGO_API_KEY: 0000000000000000000000000000000000000000
run: |
py.test --cov=./tiingo
- name: Run code coverage
- name: Run code coverage
run: codecov

View File

@@ -1,13 +1,15 @@
=======
History
=======
0.14.0 (2020-12-XX - Unreleased)
0.15.0 (2021-XX - Unreleased)
--------------------------------
0.14.0 (2021-03-06)
--------------------------------
* Feature (Name #Number)
* Feature: Added 3 new methods for fundamentals-endpoint: definitions, daily and statements
* Development: Run tests in Github Actions instead of Travis.org
* [/news] Fix bug in get_news() when sources list is empty (#566)
* Development: Run tests in Github Actions instead of Travis.org
* Development: This is the last version of tiingo that will support Python 3.5 and below. (#601)
0.13.0 (2020-12-12)
--------------------------------

View File

@@ -8,7 +8,7 @@ The following shows how to make a release for version 0.8.0
1. Make a branch called release/0.8.0
2. Ensure HISTORY.rst (the Changelog) is up to date
3. Update __version__.py to 0.8.0 and tag the commit
3. Update __version__.py to 0.8.0
4. Open a merge request to master
5. After the merge request is approved and merged, tag and push the merged commit with tag v0.8.0.
6. Visit https://github.com/hydrosquall/tiingo-python/releases and create a new release. Github Actions will deploy the new library to PyPI.

View File

@@ -1,6 +1,6 @@
# This file is used by mybinder.org to power the runnable examples.
tiingo==0.13.0
tiingo==0.14.0
# You technically don't have to use tiingo with pandas, but
# we included it since most data analysts will have it installed already.
pandas==1.2.2
pandas==1.2.3

View File

@@ -1 +1 @@
tiingo==0.13.0
tiingo==0.14.0

View File

@@ -1,14 +1,14 @@
pip==20.3.3
pip==21.0.1
bumpversion==0.6.0
wheel==0.36.2
watchdog==1.0.2
watchdog==2.0.2
flake8==3.8.4
tox==3.21.4
coverage==5.3.1
tox==3.23.0
coverage==5.5
Sphinx==3.4.3
cryptography==3.3.1
PyYAML==5.3.1
pytest==6.2.1
pytest-runner==5.2
cryptography==3.4.6
PyYAML==5.4.1
pytest==6.2.2
pytest-runner==5.3.0
vcrpy==2.1.1
twine==3.3.0

View File

@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.1
current_version = 0.14.0
commit = True
tag = True
@@ -15,4 +15,3 @@ exclude = docs
[aliases]
test = pytest

View File

@@ -68,12 +68,10 @@ setup(
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Office/Business :: Financial :: Investment',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
test_suite='tests',
tests_require=test_requirements,

View File

@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '0.13.0'
__version__ = '0.14.0'