Release 3.8.0
Release 3.8.0 is a new minor version fixing warnings, updating to newer versions of our dependencies, and changing some minimum requirements.
Important Changes:
- The minimum required
pandasversion is nowpandas 2.1. - Support for
Python 3.8has been dropped. The minimum required Python version is now3.9.
Fixes
- Solved a
DeprecationWarningappearing when writing aTfsDataFrameto disk due to the use of.applymap, byusing the now recommended.mapmethod. - Solved a
DeprecationWarningappearing when reading a file from disk due to the use ofdelim_whitespacein our reader, by using the now recommendedsepoption. - Solved a
FutureWarningappearing when validating aTfsDataFramedue to the use of thepd.option_context('mode.use_inf_as_na', True)context manager during validation by explicitely casting infinite values toNaNs. - Solved a
FutureWarningappearing when validating aTfsDataFramedue to object downcasting happening during validation by explicitely infering dtypes first.
What's Changed
- Deprecations and FutureWarnings Fixes by @fsoubelet in #128
Full Changelog: v3.7.3...v3.8.0