Skip to content

Commit

Permalink
Version 0.2.45
Browse files Browse the repository at this point in the history
  • Loading branch information
ValueRaider committed Oct 20, 2024
1 parent 1de113e commit f19dff2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Change Log
===========

0.2.45
------
Features:
- Screener #2066 @ericpien
Fixes
- Tickers keyerror #2068 @antoniouaa
- IndexError in some history() debug messages #2087
- improve dividend repair #2090
Maintenance
- fix unit tests contextual imports #2067
- fix typos #2072 @algonell
- add Pyright type checking #2059 @marco-carvalho

0.2.44
------
Features:
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "yfinance" %}
{% set version = "0.2.44" %}
{% set version = "0.2.45" %}

package:
name: "{{ name|lower }}"
Expand Down
2 changes: 1 addition & 1 deletion yfinance/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.2.44"
version = "0.2.45"

2 comments on commit f19dff2

@PyThuan
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Traceback (most recent call last):

File /opt/conda/lib/python3.10/site-packages/IPython/core/interactiveshell.py:3553 in run_code
exec(code_obj, self.user_global_ns, self.user_ns)

Cell In[3], line 1
import yfinance as yf

File /opt/conda/lib/python3.10/site-packages/yfinance/init.py:30
from .screener.screener import Screener

File /opt/conda/lib/python3.10/site-packages/yfinance/screener/init.py:1
from .screener import Screener

File /opt/conda/lib/python3.10/site-packages/yfinance/screener/screener.py:101
logger.error(f"Failed to get screener data for '{self._body.get('query', "query not set")}' reason: {e}")
^
SyntaxError: f-string: unmatched '('

@ValueRaider
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not the way to report a bug.

Please sign in to comment.