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
I had an old conda environment running Python 3.5, and I pulled to get the latest 1.0.0 commits. When I try to run any pytests, I get the pytest config errors that have this in the stack trace:
During handling of the above exception, another exception occurred:
../../miniconda3/envs/ibis_dev/lib/python3.5/site-packages/_pytest/config.py:379: in _importconftest
mod = conftestpath.pyimport()
../../miniconda3/envs/ibis_dev/lib/python3.5/site-packages/py/_path/local.py:662: in pyimport
__import__(modname)
E File "/home/tory/git/ibis/ibis/__init__.py", line 67
E **kwds,
E ^
E SyntaxError: invalid syntax
I think the addition of black has made incompatible changes for Python 3.5. This example is an extra comma at the end of an argument list that contains **kwargs.
If I build a new conda env with Python 3.6, the tests all pass.
The text was updated successfully, but these errors were encountered:
Closes#1750
Author: Phillip Cloud <cpcloud@gmail.com>
Closes#1751 from cpcloud/fix-py35 and squashes the following commits:
d9cc997 [Phillip Cloud] Use an entry point for docs as well
a6d7649 [Phillip Cloud] BUG: Add Python 3.5 testing back to CI
I had an old conda environment running Python 3.5, and I pulled to get the latest 1.0.0 commits. When I try to run any pytests, I get the pytest config errors that have this in the stack trace:
I think the addition of
blackhas made incompatible changes for Python 3.5. This example is an extra comma at the end of an argument list that contains**kwargs.If I build a new conda env with Python 3.6, the tests all pass.
The text was updated successfully, but these errors were encountered: