Skip to content

Commit

Permalink
Merge branch 'master' of github.com:portfolioplus/pytickersymbols
Browse files Browse the repository at this point in the history
  • Loading branch information
SlashGordon committed Sep 2, 2021
2 parents 0b93f99 + 2f1de09 commit 281a8b5
Show file tree
Hide file tree
Showing 8 changed files with 300 additions and 49 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/symbolscannersymbols.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: pip install tox
- name: Run tests
run: |
SKIP_UNIQUE_TICKER_CHECK=1 tox
tox -e symbolscanner-py38
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

<!--next-version-placeholder-->

## v1.7.10 (2021-08-23)
### Fix
* Update stock symbols ([`98f6cf7`](https://github.com/portfolioplus/pytickersymbols/commit/98f6cf73a4589bc71e3e04188922f2b529afaa2f))

## v1.7.9 (2021-08-09)
### Fix
* Update stock symbols ([`d883d51`](https://github.com/portfolioplus/pytickersymbols/commit/d883d51a68ce65293e550dca34a86692b8dea004))

## v1.7.8 (2021-07-21)
### Fix
* Update stock symbols ([`abcc7d0`](https://github.com/portfolioplus/pytickersymbols/commit/abcc7d01f81b85f1e3428924999d21ca903ef2c0))

## v1.7.7 (2021-07-13)
### Fix
* Update stock symbols ([`c8dd41c`](https://github.com/portfolioplus/pytickersymbols/commit/c8dd41ca9a462291d7a75dfb362966b26a3c0a40))

## v1.7.6 (2021-06-16)
### Fix
* Update stock symbols ([`f295a48`](https://github.com/portfolioplus/pytickersymbols/commit/f295a487360b95776aeedc1cfa2df0f074915195))
Expand Down
5 changes: 3 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
wheel==0.36.2
wheel==0.37.0
pytest
pytest-cov
pandas==1.3.0
pandas==1.3.2
yfinance==0.1.63
PyYAML==5.4.1
pycountry==20.7.3
tox
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
long_description = fh.read()

INSTALL_REQUIRES = (
['wheel==0.36.2', 'PyYAML==5.4.1']
['wheel==0.37.0', 'PyYAML==5.4.1']
)

with open('src/pytickersymbols/__init__.py', 'r') as fd:
Expand Down
2 changes: 1 addition & 1 deletion src/pytickersymbols/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import yaml
from weakref import WeakValueDictionary

__version__ = "1.7.6"
__version__ = "1.7.10"


class Singleton(type):
Expand Down

0 comments on commit 281a8b5

Please sign in to comment.