Skip to content

Release v0.7#165

Closed
rlskoeser wants to merge 63 commits intomainfrom
release/0.7
Closed

Release v0.7#165
rlskoeser wants to merge 63 commits intomainfrom
release/0.7

Conversation

@rlskoeser
Copy link
Copy Markdown
Member

No description provided.

rlskoeser and others added 30 commits January 16, 2026 10:00
…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
rlskoeser and others added 24 commits April 24, 2026 13:40
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>
Soften the warning; expand the parsers, add links to publications.
@review-notebook-app
Copy link
Copy Markdown

Check out this pull request on  ReviewNB

See visual diffs & provide feedback on Jupyter Notebooks.


Powered by ReviewNB

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 7, 2026

Warning

Rate limit exceeded

@rlskoeser has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 24 minutes and 37 seconds before requesting another review.

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 @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

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 configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: 79ac80b2-13fd-4777-bf95-4bbc4af1bd35

📥 Commits

Reviewing files that changed from the base of the PR and between f21eddc and ead4945.

📒 Files selected for processing (60)
  • .github/dependabot.yml
  • .github/workflows/check.yml
  • .github/workflows/python-publish.yml
  • .github/workflows/unit_tests.yml
  • .pre-commit-config.yaml
  • .readthedocs.yaml
  • CHANGELOG.md
  • DEVELOPER_NOTES.md
  • README.md
  • examples/edtf-support.ipynb
  • examples/pgp_dates.ipynb
  • examples/shakespeare-and-company-project/shxco_partial_date_durations.ipynb
  • pyproject.toml
  • scripts/generate_gregorian_grammar.py
  • src/undate/__init__.py
  • src/undate/converters/__init__.py
  • src/undate/converters/base.py
  • src/undate/converters/calendars/__init__.py
  • src/undate/converters/calendars/gregorian/__init__.py
  • src/undate/converters/calendars/gregorian/converter.py
  • src/undate/converters/calendars/gregorian/parser.py
  • src/undate/converters/calendars/gregorian/transformer.py
  • src/undate/converters/calendars/hebrew/converter.py
  • src/undate/converters/calendars/hebrew/parser.py
  • src/undate/converters/calendars/hebrew/transformer.py
  • src/undate/converters/calendars/islamic/converter.py
  • src/undate/converters/calendars/islamic/parser.py
  • src/undate/converters/calendars/islamic/transformer.py
  • src/undate/converters/combined.py
  • src/undate/converters/edtf/converter.py
  • src/undate/converters/edtf/parser.py
  • src/undate/converters/grammars/combined.lark
  • src/undate/converters/grammars/gregorian.lark
  • src/undate/converters/grammars/gregorian_multilang.lark
  • src/undate/converters/grammars/hebrew.lark
  • src/undate/converters/grammars/holidays.lark
  • src/undate/converters/grammars/islamic.lark
  • src/undate/converters/grammars/undate_common.lark
  • src/undate/converters/holidays.py
  • src/undate/converters/iso8601.py
  • src/undate/date.py
  • src/undate/interval.py
  • src/undate/undate.py
  • tests/test_converters/edtf/test_edtf_parser.py
  • tests/test_converters/test_base.py
  • tests/test_converters/test_calendars/test_gregorian/test_gregorian_converter.py
  • tests/test_converters/test_calendars/test_gregorian/test_gregorian_parser.py
  • tests/test_converters/test_calendars/test_gregorian/test_gregorian_transformer.py
  • tests/test_converters/test_calendars/test_hebrew/test_hebrew_converter.py
  • tests/test_converters/test_calendars/test_hebrew/test_hebrew_parser.py
  • tests/test_converters/test_calendars/test_hebrew/test_hebrew_transformer.py
  • tests/test_converters/test_calendars/test_islamic/test_islamic_converter.py
  • tests/test_converters/test_calendars/test_islamic/test_islamic_parser.py
  • tests/test_converters/test_calendars/test_islamic/test_islamic_transformer.py
  • tests/test_converters/test_combined_parser.py
  • tests/test_converters/test_edtf.py
  • tests/test_converters/test_holidays.py
  • tests/test_date.py
  • tests/test_interval.py
  • tests/test_undate.py
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release/0.7

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

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:
Comment thread src/undate/undate.py

@classmethod
def to_undate(cls, other: object) -> "Undate":
def to_undate(cls, other: object) -> Undate:
@rlskoeser rlskoeser closed this May 7, 2026
@rlskoeser rlskoeser deleted the release/0.7 branch May 7, 2026 21:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant