0.7.1 (2023-05-23)
Bug Fixes
- Fixed
setup_logging
function.
In onETL==0.7.0 calling onetl.log.setup_logging()
broke the logging:
Traceback (most recent call last):
File "/opt/anaconda/envs/py39/lib/python3.9/logging/__init__.py", line 434, in format
return self._format(record)
File "/opt/anaconda/envs/py39/lib/python3.9/logging/__init__.py", line 430, in _format
return self._fmt % record.dict
KeyError: 'levelname:8s'
In onETL==0.7.0 there are examples of installing onETL with extras:
pip install onetl[files, kerberos, spark]
But pip fails to install such package:
ERROR: Invalid requirement: 'onet[files,'
This is because of spaces in extras clause. Fixed:
pip install onetl[files,kerberos,spark]