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
If I install otoole from a new environment, python 3.12.0 is installed by default. When running tests, the warnings shown below are produced from the datetime module. If I use python 3.11.5, these warnings are not produced.
Expected Behavior
Tests pass without warnings
Steps To Reproduce
Create new conda environment conda create -n otoole
Check python version is 3.12.0 with conda list python
Install otoole via pip install otoole
Install tox via pip install tox
Run tests with tox
Log output
============================================================ warnings summary ============================================================
.tox/default/lib/python3.12/site-packages/dateutil/tz/tz.py:37
/home/trevorb1/master/otoole/.tox/default/lib/python3.12/site-packages/dateutil/tz/tz.py:37: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled forremovalin a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
EPOCH = datetime.datetime.utcfromtimestamp(0)
tests/test_convert.py: 7 warnings
tests/test_read_strategies.py: 2 warnings
tests/test_utils.py: 2 warnings
tests/test_write_strategies.py: 1 warning
/home/trevorb1/master/otoole/.tox/default/lib/python3.12/site-packages/openpyxl/packaging/core.py:99: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled forremovalin a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
now = datetime.datetime.utcnow()
tests/test_convert.py::TestWrite::test_write_excel
tests/test_write_strategies.py::TestWriteExcel::test_write_out_empty_dataframe
/home/trevorb1/master/otoole/.tox/default/lib/python3.12/site-packages/openpyxl/writer/excel.py:292: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled forremovalin a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
workbook.properties.modified = datetime.datetime.utcnow()
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
---------- coverage: platform linux, python 3.12.0-final-0 -----------
Coverage HTML written to dir htmlcov
============================================== 209 passed, 1 skipped, 15 warnings in 50.15s ==============================================
The Issue
If I install
otoole
from a new environment, python3.12.0
is installed by default. When running tests, the warnings shown below are produced from thedatetime
module. If I use python3.11.5
, these warnings are not produced.Expected Behavior
Tests pass without warnings
Steps To Reproduce
conda create -n otoole
3.12.0
withconda list python
otoole
viapip install otoole
tox
viapip install tox
tox
Log output
Operating System
Linux
What version of otoole are you running?
1.1.2
Possible Solution
No response
Anything else?
Issue was originally flagged in PR #211
The text was updated successfully, but these errors were encountered: