Fix Semver dataclass order conflict with Python 3.11
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
cfb9858967
commit
c8a937ec15
|
|
@ -57,7 +57,7 @@ rate_limiter = RateLimiter()
|
||||||
password_hasher = PasswordHasher(memory_cost=65536, time_cost=3, parallelism=4)
|
password_hasher = PasswordHasher(memory_cost=65536, time_cost=3, parallelism=4)
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True, order=True)
|
@dataclass(frozen=True)
|
||||||
class Semver:
|
class Semver:
|
||||||
major: int
|
major: int
|
||||||
minor: int
|
minor: int
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue