You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
/usr/local/lib/python3.10/dist-packages/tensorflow/lite/python/util.py:55: DeprecationWarning: jax.xla_computation is deprecated. Please use the AOT APIs; see https://jax.readthedocs.io/en/latest/aot.html. For example, replace xla_computation(f)(*xs) with jit(f).lower(*xs).compiler_ir('hlo'). See CHANGELOG.md for 0.4.30 for more examples.
from jax import xla_computation as _xla_computation
Traceback (most recent call last):
File "/usr/local/lib/python3.10/dist-packages/IPython/core/interactiveshell.py", line 3553, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "", line 9, in <cell line: 9>
from finrl.config_tickers import DOW_30_TICKER
File "/usr/local/lib/python3.10/site-packages/finrl/init.py", line 5, in
from finrl.train import train
File "/usr/local/lib/python3.10/site-packages/finrl/train.py", line 10, in
from finrl.meta.data_processor import DataProcessor
File "/usr/local/lib/python3.10/site-packages/finrl/meta/data_processor.py", line 8, in
from finrl.meta.data_processors.processor_yahoofinance import (
File "/usr/local/lib/python3.10/site-packages/finrl/meta/data_processors/processor_yahoofinance.py", line 21, in
import yfinance as yf
File "/usr/local/lib/python3.10/site-packages/yfinance/init.py", line 30, in
from .screener.screener import Screener
File "/usr/local/lib/python3.10/site-packages/yfinance/screener/init.py", line 1, in
from .screener import Screener
File "/usr/local/lib/python3.10/site-packages/yfinance/screener/screener.py", line 101
logger.error(f"Failed to get screener data for '{self._body.get('query', "query not set")}' reason: {e}")
^ SyntaxError: f-string: unmatched '('
To Reproduce
While importing in Colab I got the error. Whe I was running it the first time there was no issue with import.
Locally I got te same issue (VS code, Win 10)
The text was updated successfully, but these errors were encountered:
Describe the bug
/usr/local/lib/python3.10/dist-packages/tensorflow/lite/python/util.py:55: DeprecationWarning: jax.xla_computation is deprecated. Please use the AOT APIs; see https://jax.readthedocs.io/en/latest/aot.html. For example, replace xla_computation(f)(*xs) with jit(f).lower(*xs).compiler_ir('hlo'). See CHANGELOG.md for 0.4.30 for more examples.
from jax import xla_computation as _xla_computation
Traceback (most recent call last):
File "/usr/local/lib/python3.10/dist-packages/IPython/core/interactiveshell.py", line 3553, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "", line 9, in <cell line: 9>
from finrl.config_tickers import DOW_30_TICKER
File "/usr/local/lib/python3.10/site-packages/finrl/init.py", line 5, in
from finrl.train import train
File "/usr/local/lib/python3.10/site-packages/finrl/train.py", line 10, in
from finrl.meta.data_processor import DataProcessor
File "/usr/local/lib/python3.10/site-packages/finrl/meta/data_processor.py", line 8, in
from finrl.meta.data_processors.processor_yahoofinance import (
File "/usr/local/lib/python3.10/site-packages/finrl/meta/data_processors/processor_yahoofinance.py", line 21, in
import yfinance as yf
File "/usr/local/lib/python3.10/site-packages/yfinance/init.py", line 30, in
from .screener.screener import Screener
File "/usr/local/lib/python3.10/site-packages/yfinance/screener/init.py", line 1, in
from .screener import Screener
File "/usr/local/lib/python3.10/site-packages/yfinance/screener/screener.py", line 101
logger.error(f"Failed to get screener data for '{self._body.get('query', "query not set")}' reason: {e}")
^
SyntaxError: f-string: unmatched '('
To Reproduce
While importing in Colab I got the error. Whe I was running it the first time there was no issue with import.
Locally I got te same issue (VS code, Win 10)
The text was updated successfully, but these errors were encountered: