This pull request updates the version constraints in the pyproject.toml file to support a broader range of Python and Django versions.
Changes Made:
Python Version Constraint:
Updated to support Python 3.11 through Python 4.x.
The constraint has been changed from ^3.12 to ^3.11 to include Python 3.11 and up to but not including Python 4.0.
Django Version Constraint:
Modified to include Django versions from 4.2 through the latest 5.x versions.
The constraint has been updated from 5.0 to >=4.2,<6.0 to support Django 4.2 and all versions up to but not including Django 6.0.
Purpose:
These updates ensure that the project remains compatible with the latest features and improvements in Python and Django. By broadening the version constraints, we can take advantage of new features and security updates in both Python and Django while ensuring backward compatibility with recent releases.
Description:
This pull request updates the version constraints in the
pyproject.toml
file to support a broader range of Python and Django versions.Changes Made:
Python Version Constraint:
^3.12
to^3.11
to include Python 3.11 and up to but not including Python 4.0.Django Version Constraint:
5.0
to>=4.2,<6.0
to support Django 4.2 and all versions up to but not including Django 6.0.Purpose:
These updates ensure that the project remains compatible with the latest features and improvements in Python and Django. By broadening the version constraints, we can take advantage of new features and security updates in both Python and Django while ensuring backward compatibility with recent releases.
Closes #13 #14