Releases: jwodder/pyversion-info
Releases · jwodder/pyversion-info
v1.2.5 — Drop `click`
v1.2.4 — Support click v8.3.0
Version 1.2.4
v1.2.3 — Exclude bad click version
- Drop support for Python 3.7
- Support Python 3.13
- Exclude click v8.2.2 from dependencies due to breakage caused by pallets/click#3024
v1.2.2 — Increase some dependencies' upper bounds
- Support platformdirs v4.0
- Migrated from setuptools to hatch
- Support cachecontrol v0.14
v1.2.1 — Bugfix
- Support Python 3.12
- Correct the order of results returned by
PyPyVersionInfo.supported_cpython_series()
v1.2.0 — Update dependencies
- Support platformdirs v3.0
- Update pydantic to v2.0
v1.1.1 — Update cachecontrol
- Support Python 3.11
- Support cachecontrol 0.13
v1.1.0 — EOL state for major & micro CPython versions
- Use pydantic internally for parsing & validating version databases
eol_date()andis_eol()now accept major and micro versions- The
showcommand now outputs the EOL date and EOL state for all CPython version levels
v1.0.0 — Add PyPy information
- Support Python 3.10
- Drop support for Python 3.6
- Support for fetching information on PyPy versions has been added. With it come the following changes:
- The schema used by the database (and thus the URL for the default database) has been modified
PyVersionInfohas been renamed toCPythonVersionInfo- A new
PyPyVersionInfoclass has been added - A new
VersionDatabaseclass has been added, containing aCPythonVersionInfoinstance and aPyPyVersionInfoinstance get_pyversion_info()is nowVersionDatabase.fetch()- The command-line interface now takes a
--pypyoption for showing details about PyPy versions
- The
unreleasedargument tomajor_versions(),minor_versions(),micro_versions(), andsubversions()has been removed; the methods now return all known versions, released & unreleased release_date()now returnsNonefor any known version whose release date is unknown, whether it's been released yet or not. Useis_released()to determine whether such a version has been released.eol_date()now returnsNonefor any known version whose EOL date is unknown, whether it's EOL yet or not. Useis_eol()to determine whether such a version has reached end-of-life.- Moved documentation from README file to a Read the Docs site
v0.4.0 — Command-line interface and listing all known versions
major_versions(),minor_versions(),micro_versions(), andsubversions()now take optionalunreleasedarguments for including unreleased versionsis_supported()now accepts major and micro versionsUnknownVersionErrornow inheritsValueError- Added a command-line interface