Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update myst-parser, and add typing_extensions as a docs requirement #756

Merged
merged 4 commits into from
Apr 26, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 8, 2023

Updates the requirements on myst-parser to permit the latest version.

Release notes

Sourced from myst-parser's releases.

v1.0.0

πŸŽ‰ MyST-Parser 1.0.0 πŸŽ‰

This changes absolutely nothing in the code, or about the maintenance/release policy of this project. But it does feel about time πŸ˜„

Changelog

Sourced from myst-parser's changelog.

1.0.0 - 2023-03-07

πŸŽ‰ MyST-Parser 1.0.0 πŸŽ‰

This changes absolutely nothing in the code, or about the maintenance/release policy of this project. But it does feel about time πŸ˜„

0.19.2 - 2023-03-02

✨ NEW: Add myst_fence_as_directive config (gh-pr:742)

Setting the following config, for example:

extensions = ["myst_parser", "sphinxcontrib.mermaid"]
myst_fence_as_directive = ["mermaid"]
# optional to use directive options
myst_enable_extensions = ["attrs_block"]

allows for one to write:

{caption="My caption"}
{alt="HTML alt" align=center}
```mermaid
graph LR
a --> b
```

and have interoperable rendering with tools like GitHub.

πŸŽ‰ New contributors:

  • πŸ“š Add html_last_updated_fmt = "" to conf.py to fix documentation footer, thanks to gh-user:jeanas (gh-pr:691)
  • πŸ“š Fix the sphinx-design example, thanks to gh-user:recfab (gh-pr:738)

0.19.1 - 2023-03-07

πŸ› FIX NoURI error in doc reference resolution, for texinfo builds (gh-pr:734)

0.19.0 - 2023-03-01

This release brings a number of exciting new features, improvements, and upgrades πŸŽ‰

Full Changelog: v0.18.1...v0.19.0

πŸ“š Rewritten documentation

... (truncated)

Commits

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 8, 2023
@codecov-commenter
Copy link

codecov-commenter commented Mar 8, 2023

Codecov Report

Merging #756 (8f32da4) into master (1d1957b) will not change coverage.
The diff coverage is n/a.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #756   +/-   ##
=======================================
  Coverage   80.98%   80.98%           
=======================================
  Files         146      146           
  Lines        9720     9720           
=======================================
  Hits         7872     7872           
  Misses       1848     1848           

Updates the requirements on [myst-parser](https://github.com/executablebooks/MyST-Parser) to permit the latest version.
- [Release notes](https://github.com/executablebooks/MyST-Parser/releases)
- [Changelog](https://github.com/executablebooks/MyST-Parser/blob/master/CHANGELOG.md)
- [Commits](executablebooks/MyST-Parser@v0.14.0...v1.0.0)

---
updated-dependencies:
- dependency-name: myst-parser
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/myst-parser-gte-0.14-and-lt-1.1 branch from 91d2973 to d8b348c Compare April 5, 2023 14:50
@ascillitoe ascillitoe changed the title Update myst-parser requirement from <0.19,>=0.14 to >=0.14,<1.1 Update myst-parser requirement from <0.19,>=0.14 to >=1.0, <2.0 Apr 6, 2023
@ascillitoe ascillitoe added the DO NOT MERGE Do not merge this PR label Apr 6, 2023
@ascillitoe
Copy link
Contributor

NOT READY FOR MERGE. The html build returned 101 warnings instead of the usual 6. Needs investigation...

@ascillitoe
Copy link
Contributor

@dependabot rebase

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 26, 2023

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@ascillitoe
Copy link
Contributor

ascillitoe commented Apr 26, 2023

NOT READY FOR MERGE. The html build returned 101 warnings instead of the usual 6. Needs investigation...

The warnings were all of the type:

WARNING: autodoc: failed to import module 'cd.base' from module 'alibi_detect'; the following exception was raised:
No module named 'typing_extensions'

They were occurring because we need typing_extensions to be present to build the docs (mocking it does not work). It used to be pulled in by myst-parser, but typing_extensions was removed as a dep of myst-parser in v0.19.0 (see here). Solution is to include typing_extensions in requirements/docs.txt.

@ascillitoe ascillitoe changed the title Update myst-parser requirement from <0.19,>=0.14 to >=1.0, <2.0 Update myst-parser, and include typing_extensions as a docs requirement Apr 26, 2023
@ascillitoe ascillitoe changed the title Update myst-parser, and include typing_extensions as a docs requirement Update myst-parser, inc. adding typing_extensions as a docs requirement Apr 26, 2023
@ascillitoe ascillitoe changed the title Update myst-parser, inc. adding typing_extensions as a docs requirement Update myst-parser, and inc. typing_extensions as a docs requirement Apr 26, 2023
@ascillitoe ascillitoe changed the title Update myst-parser, and inc. typing_extensions as a docs requirement Update myst-parser, and add typing_extensions as a docs requirement Apr 26, 2023
Copy link
Contributor

@ascillitoe ascillitoe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Docs look OK, and 3 warnings as expected

@ascillitoe ascillitoe removed the DO NOT MERGE Do not merge this PR label Apr 26, 2023
@ascillitoe ascillitoe merged commit 8cc5095 into master Apr 26, 2023
9 checks passed
@ascillitoe ascillitoe deleted the dependabot/pip/myst-parser-gte-0.14-and-lt-1.1 branch April 26, 2023 16:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants