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
Install using pip via python binary python -m pip install bigquery-sql-parser
Open a Python interpreter and try to import the package
>>> from bigquery_sql_parser import query
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/brian.lie/miniconda3/envs/parser/lib/python3.6/site-packages/bigquery_sql_parser/query.py", line 8, in <module>
from .tokenizer import Tokenizer
File "/Users/brian.lie/miniconda3/envs/parser/lib/python3.6/site-packages/bigquery_sql_parser/tokenizer.py", line 1
from __future__ import annotations
^
SyntaxError: future feature annotations is not defined
The text was updated successfully, but these errors were encountered:
Reproducing with these steps
conda create -n sqlparser python=3.6
conda activate sqlparser
python -m pip install bigquery-sql-parser
The text was updated successfully, but these errors were encountered: