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
Under python3 `makemigrations` complains that `package_monitor` has
changes in models which are not reflected in its migrations.
It's caused by b'' strings.
('raw', models.CharField(help_text=b'The line specified in the requirements file.', max_length=200)),
19
-
('package_name', models.CharField(help_text=b'The name of the package on PyPI.', unique=True, max_length=100)),
20
-
('current_version', semantic_version.django_fields.VersionField(help_text=b'The current version as specified in the requirements file. ', max_length=200, null=True, blank=True)),
21
-
('latest_version', semantic_version.django_fields.VersionField(help_text=b'Latest version available from PyPI.', max_length=200, null=True, blank=True)),
22
-
('licence', models.CharField(help_text=b'The licence used (extracted from PyPI info).', max_length=100, blank=True)),
23
-
('diff_status', models.CharField(default=b'unknown', help_text=b'The diff between current and latest versions. Updated via update_latest_version.', max_length=10, choices=[(b'unknown', b'Unknown'), (b'none', b'Up-to-date'), (b'major', b'Major'), (b'minor', b'Minor'), (b'patch', b'Patch'), (b'other', b'Other')])),
24
-
('checked_pypi_at', models.DateTimeField(help_text=b'When PyPI was last checked for this package.', null=True, blank=True)),
25
-
('is_editable', models.BooleanField(default=False, help_text=b"True if this requirement is specified with '-e' flag.")),
26
-
('url', models.URLField(help_text=b'The URL to check - PyPI or repo (if editable).', null=True, blank=True)),
18
+
('raw', models.CharField(help_text='The line specified in the requirements file.', max_length=200)),
19
+
('package_name', models.CharField(help_text='The name of the package on PyPI.', unique=True, max_length=100)),
20
+
('current_version', semantic_version.django_fields.VersionField(help_text='The current version as specified in the requirements file. ', max_length=200, null=True, blank=True)),
21
+
('latest_version', semantic_version.django_fields.VersionField(help_text='Latest version available from PyPI.', max_length=200, null=True, blank=True)),
22
+
('licence', models.CharField(help_text='The licence used (extracted from PyPI info).', max_length=100, blank=True)),
23
+
('diff_status', models.CharField(default='unknown', help_text='The diff between current and latest versions. Updated via update_latest_version.', max_length=10, choices=[('unknown', 'Unknown'), ('none', 'Up-to-date'), ('major', 'Major'), ('minor', 'Minor'), ('patch', 'Patch'), ('other', 'Other')])),
24
+
('checked_pypi_at', models.DateTimeField(help_text='When PyPI was last checked for this package.', null=True, blank=True)),
25
+
('is_editable', models.BooleanField(default=False, help_text="True if this requirement is specified with '-e' flag.")),
26
+
('url', models.URLField(help_text='The URL to check - PyPI or repo (if editable).', null=True, blank=True)),
0 commit comments