-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: Python 3.12 Upgrade #207
base: master
Are you sure you want to change the base?
Conversation
SkillValidationConfiguration with both course and organization. | ||
""" | ||
with pytest.raises(IntegrityError) as raised_exception: | ||
with pytest.raises(ValidationError) as raised_exception: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Django 4.2 raises ValidationError
before reaching to the point where IntegrityError
is raised since the model's full_clean()
method is catching this issue before database-level integrity checks can be enforced.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this needs some manual verification? I will find some time to test this on my end.
0deb4f2
to
44d2364
Compare
@@ -15,6 +15,6 @@ | |||
# 2. MINOR version when you add functionality in a backwards compatible manner, and | |||
# 3. PATCH version when you make backwards compatible bug fixes. | |||
# More details can be found at https://semver.org/ | |||
__version__ = '1.53.0' | |||
__version__ = '1.54.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@UsamaSadiq Should we bump this to 2.0.0
?
Description
Python 3.12
env onlyPython 3.12
envPython<3.12
numpy
,pandas
packages to latest versions forPython 3.12
support.1.54.0
.Testing
Python 3.12
are green.