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
However, when I install with poetry or pip for Python 3.12+, it finds the outdated v1.4.0 package on PyPI from 2021, which does NOT include these improvements.
Notice the project.version in pyproject.tomlstill states 1.4.0.
When I start python3.12 -c "from dataclass_csv import DataclassWriter" I get the error ModuleNotFoundError: No module named 'distutils'.
The same applies for from dataclass_csv import DataclassReader
Is it just me seeing this issue? Am I installing it improperly, or in general people who have not changed to uv?
If you'd like, I can add it as a test and submit a PR for this.
Hi @dfurtado,
nice to see the project is still active and helping many people!
Question: Any idea when new versions will be released to PyPI?
In detail:
distutilsdependency was discussed in DeprecationWarning for distutils package #52 and resolved in PR Replace the strtobool function #65.poetryorpipfor Python 3.12+, it finds the outdatedv1.4.0package on PyPI from 2021, which does NOT include these improvements.project.versioninpyproject.tomlstill states1.4.0.python3.12 -c "from dataclass_csv import DataclassWriter"I get the errorModuleNotFoundError: No module named 'distutils'.from dataclass_csv import DataclassReaderIs it just me seeing this issue? Am I installing it improperly, or in general people who have not changed to
uv?If you'd like, I can add it as a test and submit a PR for this.