Conversation
…sing Add support for parsing Gregorian dates in standard text formats
- Adapted from Hale/Eliot dataset code - Converted with help from OpenCode and Claude
Also fix spelling of moveable (movable) and Candlemas (Candlemass)
Add grammar & converter for Christian holidays
Allow manual publication for pypi package
Copied from work by @laurejt on piffle Co-authored-by: Laure Thompson <602628+laurejt@users.noreply.github.com>
Adapted from piffle check Co-authored-by: Laure Thompson <602628+laurejt@users.noreply.github.com>
Updates based on repo-review report
Soften the warning; expand the parsers, add links to publications.
Update README.md
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (60)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
| return None | ||
|
|
||
| def to_string(self, undate: Union[Undate, UndateInterval]) -> str: | ||
| def to_string(self, undate: Undate | UndateInterval) -> str: |
| return Undate(*date_parts) # type: ignore | ||
|
|
||
| def to_string(self, undate: Union[Undate, UndateInterval]) -> str: | ||
| def to_string(self, undate: Undate | UndateInterval) -> str: |
|
|
||
| @classmethod | ||
| def to_undate(cls, other: object) -> "Undate": | ||
| def to_undate(cls, other: object) -> Undate: |
No description provided.