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

Warning in the Building HTML documentation #54226

Closed
gitboy16 opened this issue Apr 24, 2024 · 2 comments · Fixed by #54263
Closed

Warning in the Building HTML documentation #54226

gitboy16 opened this issue Apr 24, 2024 · 2 comments · Fixed by #54263
Labels
building Build system, or building Julia or its dependencies docs This change adds or pertains to documentation

Comments

@gitboy16
Copy link
Contributor

gitboy16 commented Apr 24, 2024

The following warning appears while building the html documentation on master:

The active manifest file has dependencies that were resolved with a different julia version (1.11.0-DEV). Unexpected behavior may occur.

That can be solved by either updating the Manifest.toml or adding a line of code in /doc/make.jl (line 9).

using Pkg
Pkg.resolve() # Pkg.update() should also work and would probably be better?
Pkg.instantiate()

That should avoid any warning going forward? And need to update the Manifest.toml?

Removing the Manifest is not working on my side probably because of my connection:

Error: RequestError: HTTP/1.0 200 OK (Operation too slow. Less than 1 bytes/sec transferred the last 20 seconds)
@inkydragon inkydragon added docs This change adds or pertains to documentation building Build system, or building Julia or its dependencies labels Apr 26, 2024
gitboy16 added a commit to gitboy16/julia that referenced this issue Apr 26, 2024
@fredrikekre
Copy link
Member

Since docs are built succesfully on CI it means that the warning are harmful. If you want to run Pkg.resolve and make a PR with that that would be good though.

@gitboy16
Copy link
Contributor Author

gitboy16 commented Apr 26, 2024

Thank you for the feedback. I can amend the Pkg.update() to Pkg.resolve() or amend the Manifest with the result of Pkg.resolve() in the PR I did. There was no need to close my PR, right?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
building Build system, or building Julia or its dependencies docs This change adds or pertains to documentation
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants