Skip to content

Commit

Permalink
0.8.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarob96 committed Apr 29, 2019
1 parent 7330a1d commit 7fe1d6e
Show file tree
Hide file tree
Showing 6 changed files with 471 additions and 493 deletions.
473 changes: 224 additions & 249 deletions .idea/workspace.xml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ dist: xenial
install:
- pip install pandas==0.24.2
- pip install requests==2.21.0
- pip install lxml==4.3.2
- pip install unidecode==1.0.23
- pip install investpy==0.8.2
- pip install investpy==0.8.3
- pip install pytest==4.1.1
- pip install lxml==4.3.2

script:
- pytest
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ To conclude this section, I am in the need to specify that this is not the final

In order to get this package working you will need to install [**investpy**](https://pypi.org/project/investpy/) from PyPi via Terminal typing:

``pip install investpy==0.8.3``
``pip install investpy==0.8.4``

All the dependencies are already listed on the setup file of the package, but to sum them up, you will need the following requirements:

* [**pandas 0.24.2**](https://pypi.org/project/pandas/)
* [**requests 2.21.0**](https://pypi.org/project/requests/)
* [**lxml 4.3.3**](https://pypi.org/project/lxml/)
* [**unidecode 1.0.23**](https://pypi.org/project/unidecode/)
* [**pytest 4.1.1**](https://pypi.org/project/pytest/)
* [**lxml 4.3.3**](https://pypi.org/project/lxml/)

## Release Notes 0.8.3
## Release Notes 0.8.4

* Several fixes on minor bugs/errors
* Added support for Python 3.5
Expand All @@ -35,6 +35,9 @@ All the dependencies are already listed on the setup file of the package, but to
* docstring updated and "Use" section removed from package documentation
* Setup of some changes for future releases
* Handled errors such as input error return values or input dates format
* Full company name for equities add
* Company Profile retrieval returned value is a dict with the source and the description
* Internal fixes to improve its ease of adaptability

## Additional Information

Expand Down
2 changes: 1 addition & 1 deletion investpy/equities.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_equity_names():

data = {
"name": element_.text_content(),
"full_name": full_name_,
"full_name": full_name_.rstrip(),
"tag": tag_,
"isin": isin_,
"id": id_
Expand Down
Loading

0 comments on commit 7fe1d6e

Please sign in to comment.