We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 565b4cc commit 40c448bCopy full SHA for 40c448b
downloads/models.py
@@ -153,13 +153,6 @@ def clean(self):
153
"name": "Release name must be in the format 'Python X.Y.Z' (e.g., 'Python 3.14.0')"
154
})
155
156
- # def clean(self):
157
- # super().clean()
158
- # if not re.match(r'^Python\s[\d.]+$', self.name):
159
- # raise ValidationError({
160
- # 'name': 'Name must be in the format "Python X.Y.Z" (e.g., "Python 3.9.0")'
161
- # })
162
-
163
164
def update_supernav():
165
latest_python3 = Release.objects.latest_python3()
0 commit comments