- Create Economist SubmissionTracking package correctly: * mainArticle = full blog post content * coverLetter = 216-word SIR— letter * Links to blog post via blogPostId - Archive 'Letter to The Economist' from blog posts (it's the cover letter) - Fix date display on article cards (use published_at) - Target publication already displaying via blue badge Database changes: - Make blogPostId optional in SubmissionTracking model - Economist package ID: 68fa85ae49d4900e7f2ecd83 - Le Monde package ID: 68fa2abd2e6acd5691932150 Next: Enhanced modal with tabs, validation, export 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
931 B
Python
30 lines
931 B
Python
from pip._vendor.packaging.version import parse as parse_version
|
|
|
|
from pip._internal.models.link import Link
|
|
from pip._internal.utils.models import KeyBasedCompareMixin
|
|
|
|
|
|
class InstallationCandidate(KeyBasedCompareMixin):
|
|
"""Represents a potential "candidate" for installation."""
|
|
|
|
__slots__ = ["name", "version", "link"]
|
|
|
|
def __init__(self, name: str, version: str, link: Link) -> None:
|
|
self.name = name
|
|
self.version = parse_version(version)
|
|
self.link = link
|
|
|
|
super().__init__(
|
|
key=(self.name, self.version, self.link),
|
|
defining_class=InstallationCandidate,
|
|
)
|
|
|
|
def __repr__(self) -> str:
|
|
return "<InstallationCandidate({!r}, {!r}, {!r})>".format(
|
|
self.name,
|
|
self.version,
|
|
self.link,
|
|
)
|
|
|
|
def __str__(self) -> str:
|
|
return f"{self.name!r} candidate (version {self.version} at {self.link})"
|