René's URL Explorer Experiment


Title: 1.0.4: sphinx warnings `reference target not found` · Issue #510 · msgpack/msgpack-python · GitHub

Open Graph Title: 1.0.4: sphinx warnings `reference target not found` · Issue #510 · msgpack/msgpack-python

X Title: 1.0.4: sphinx warnings `reference target not found` · Issue #510 · msgpack/msgpack-python

Description: First of all currently it is not possible to use straight sphinx-build command to build documentation out of source tree Details + /usr/bin/sphinx-build -n -T -b man docs build/sphinx/man Running Sphinx v5.0.1 making output directory... ...

Open Graph Description: First of all currently it is not possible to use straight sphinx-build command to build documentation out of source tree Details + /usr/bin/sphinx-build -n -T -b man docs build/sphinx/man Running S...

X Description: First of all currently it is not possible to use straight sphinx-build command to build documentation out of source tree Details + /usr/bin/sphinx-build -n -T -b man docs build/sphinx/man Running S...

Opengraph URL: https://github.com/msgpack/msgpack-python/issues/510

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"1.0.4: sphinx warnings `reference target not found`","articleBody":"First of all currently it is not possible to use straight `sphinx-build` command to build documentation out of source tree\r\n\u003cdetails\u003e\r\n\r\n```console\r\n+ /usr/bin/sphinx-build -n -T -b man docs build/sphinx/man\r\nRunning Sphinx v5.0.1\r\nmaking output directory... done\r\nWARNING: html_static_path entry '_static' does not exist\r\nbuilding [mo]: targets for 0 po files that are out of date\r\nbuilding [man]: all manpages\r\nupdating environment: [new config] 3 added, 0 changed, 0 removed\r\nreading sources... [100%] index\r\nWARNING: autodoc: failed to import function 'pack' from module 'msgpack'; the following exception was raised:\r\nNo module named 'msgpack'\r\nWARNING: autodoc: failed to import function 'packb' from module 'msgpack'; the following exception was raised:\r\nNo module named 'msgpack'\r\nWARNING: autodoc: failed to import function 'unpack' from module 'msgpack'; the following exception was raised:\r\nNo module named 'msgpack'\r\nWARNING: autodoc: failed to import function 'unpackb' from module 'msgpack'; the following exception was raised:\r\nNo module named 'msgpack'\r\nWARNING: autodoc: failed to import class 'Packer' from module 'msgpack'; the following exception was raised:\r\nNo module named 'msgpack'\r\nWARNING: autodoc: failed to import class 'Unpacker' from module 'msgpack'; the following exception was raised:\r\nNo module named 'msgpack'\r\nWARNING: autodoc: failed to import class 'ExtType' from module 'msgpack'; the following exception was raised:\r\nNo module named 'msgpack'\r\nWARNING: autodoc: failed to import class 'Timestamp' from module 'msgpack'; the following exception was raised:\r\nNo module named 'msgpack'\r\nWARNING: autodoc: failed to import module 'exceptions' from module 'msgpack'; the following exception was raised:\r\nNo module named 'msgpack'\r\nlooking for now-outdated files... none found\r\npickling environment... done\r\nchecking consistency... done\r\nwriting... python-msgpack.3 { api advanced } /home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:8: WARNING: py:func reference target not found: dump\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:8: WARNING: py:func reference target not found: pack\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:12: WARNING: py:func reference target not found: dumps\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:12: WARNING: py:func reference target not found: packb\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:16: WARNING: py:func reference target not found: load\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:16: WARNING: py:func reference target not found: unpack\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:20: WARNING: py:func reference target not found: loads\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:20: WARNING: py:func reference target not found: unpackb\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/advanced.rst:10: WARNING: py:class reference target not found: msgpack.Packer\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/advanced.rst:13: WARNING: py:meth reference target not found: msgpack.Packer.bytes\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/advanced.rst:13: WARNING: py:meth reference target not found: msgpack.Packer.getbuffer\r\ndone\r\nbuild succeeded, 21 warnings.\r\n```\r\n\u003c/details\u003e\r\n\r\nFirst part of warnings can be fixed by patch like below:\r\n```patch\r\n--- a/docs/conf.py~     2022-06-05 08:01:50.000000000 +0000\r\n+++ b/docs/conf.py      2022-06-05 08:02:43.878255796 +0000\r\n@@ -16,7 +16,7 @@\r\n # If extensions (or modules to document with autodoc) are in another directory,\r\n # add these directories to sys.path here. If the directory is relative to the\r\n # documentation root, use os.path.abspath to make it absolute, like shown here.\r\n-# sys.path.insert(0, os.path.abspath('.'))\r\n+sys.path.insert(0, os.path.abspath(\"..\"))\r\n\r\n # -- General configuration -----------------------------------------------------\r\n author = \"Inada Naoki\"\r\n\r\n```\r\nThis patch fixes what is in the comment and that can of fix is suggested in sphinx example copy.py https://www.sphinx-doc.org/en/master/usage/configuration.html#example-of-configuration-file\r\n\r\nThan .. on building my packages I'm using `sphinx-build` command with `-n` switch which shows warmings about missing references. These are not critical issues.\r\n\r\n\u003cdetails\u003e\r\n\r\n```console\r\n+ /usr/bin/sphinx-build -n -T -b man docs build/sphinx/man\r\nRunning Sphinx v5.0.1\r\nmaking output directory... done\r\nWARNING: html_static_path entry '_static' does not exist\r\nbuilding [mo]: targets for 0 po files that are out of date\r\nbuilding [man]: all manpages\r\nupdating environment: [new config] 3 added, 0 changed, 0 removed\r\nreading sources... [100%] index\r\nlooking for now-outdated files... none found\r\npickling environment... done\r\nchecking consistency... done\r\nwriting... python-msgpack.3 { api advanced } /home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:8: WARNING: py:func reference target not found: dump\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:12: WARNING: py:func reference target not found: dumps\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:16: WARNING: py:func reference target not found: load\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/docs/api.rst:20: WARNING: py:func reference target not found: loads\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/msgpack/fallback.py:docstring of msgpack.fallback.Packer:: WARNING: py:class reference target not found: callable\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/msgpack/fallback.py:docstring of msgpack.fallback.Unpacker:6: WARNING: py:meth reference target not found: feed\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/msgpack/fallback.py:docstring of msgpack.fallback.Unpacker:: WARNING: py:class reference target not found: callable\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/msgpack/fallback.py:docstring of msgpack.fallback.Unpacker:: WARNING: py:class reference target not found: callable\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/msgpack/ext.py:docstring of msgpack.ext.Timestamp.from_unix:: WARNING: py:class reference target not found: float.\r\n/home/tkloczko/rpmbuild/BUILD/msgpack-python-1.0.4/msgpack/ext.py:docstring of msgpack.ext.Timestamp.to_datetime:: WARNING: py:class reference target not found: datetime.\r\ndone\r\nbuild succeeded, 11 warnings.\r\n```\r\n\u003c/details\u003e\r\n\r\nYou can peak on fixes that kind of issues in other projects\r\nhttps://github.com/latchset/jwcrypto/pull/289\r\nhttps://github.com/click-contrib/sphinx-click/commit/abc31069\r\nhttps://github.com/latchset/jwcrypto/pull/289\r\nhttps://github.com/RDFLib/rdflib-sqlalchemy/issues/95\r\nhttps://github.com/sissaschool/elementpath/commit/bf869d9e\r\n","author":{"url":"https://github.com/kloczek","@type":"Person","name":"kloczek"},"datePublished":"2022-06-05T08:08:46.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/510/msgpack-python/issues/510"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:a525578c-194b-0bca-d3d7-66064c774403
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE24C:154B27:9B76E0:DCA727:696F8E10
html-safe-nonce917eaaaceb3583fa8b5b0bf656a62c2d2aaa26b17da0245c8f3a5f4b009a904a
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFMjRDOjE1NEIyNzo5Qjc2RTA6RENBNzI3OjY5NkY4RTEwIiwidmlzaXRvcl9pZCI6Ijc3OTIwNDc5NjY0NTYzNTIyNzIiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac9e812c3ca3c4ff2380204f16b998b982653584615abfbd1d6c20a65bb371f20f
hovercard-subject-tagissue:1260989108
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/msgpack/msgpack-python/510/issue_layout
twitter:imagehttps://opengraph.githubassets.com/3be51685823ce82eed09cfafdb80a4ed6fcad2851f4dae0f42cb91bfaba85b7a/msgpack/msgpack-python/issues/510
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/3be51685823ce82eed09cfafdb80a4ed6fcad2851f4dae0f42cb91bfaba85b7a/msgpack/msgpack-python/issues/510
og:image:altFirst of all currently it is not possible to use straight sphinx-build command to build documentation out of source tree Details + /usr/bin/sphinx-build -n -T -b man docs build/sphinx/man Running S...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamekloczek
hostnamegithub.com
expected-hostnamegithub.com
None0ca8d8c65612640b9a1a588b3eed68222ca723ed2d028b18fe81b28936d535eb
turbo-cache-controlno-preview
go-importgithub.com/msgpack/msgpack-python git https://github.com/msgpack/msgpack-python.git
octolytics-dimension-user_id198264
octolytics-dimension-user_loginmsgpack
octolytics-dimension-repository_id2242705
octolytics-dimension-repository_nwomsgpack/msgpack-python
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id2242705
octolytics-dimension-repository_network_root_nwomsgpack/msgpack-python
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release95f60616ce2765d1114fe6da4af405a58c6d26d2
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/msgpack/msgpack-python/issues/510#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmsgpack%2Fmsgpack-python%2Fissues%2F510
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmsgpack%2Fmsgpack-python%2Fissues%2F510
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=msgpack%2Fmsgpack-python
Reloadhttps://github.com/msgpack/msgpack-python/issues/510
Reloadhttps://github.com/msgpack/msgpack-python/issues/510
Reloadhttps://github.com/msgpack/msgpack-python/issues/510
msgpack https://github.com/msgpack
msgpack-pythonhttps://github.com/msgpack/msgpack-python
Notifications https://github.com/login?return_to=%2Fmsgpack%2Fmsgpack-python
Fork 238 https://github.com/login?return_to=%2Fmsgpack%2Fmsgpack-python
Star 2.1k https://github.com/login?return_to=%2Fmsgpack%2Fmsgpack-python
Code https://github.com/msgpack/msgpack-python
Issues 3 https://github.com/msgpack/msgpack-python/issues
Pull requests 3 https://github.com/msgpack/msgpack-python/pulls
Discussions https://github.com/msgpack/msgpack-python/discussions
Actions https://github.com/msgpack/msgpack-python/actions
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/msgpack/msgpack-python/security
Please reload this pagehttps://github.com/msgpack/msgpack-python/issues/510
Insights https://github.com/msgpack/msgpack-python/pulse
Code https://github.com/msgpack/msgpack-python
Issues https://github.com/msgpack/msgpack-python/issues
Pull requests https://github.com/msgpack/msgpack-python/pulls
Discussions https://github.com/msgpack/msgpack-python/discussions
Actions https://github.com/msgpack/msgpack-python/actions
Security https://github.com/msgpack/msgpack-python/security
Insights https://github.com/msgpack/msgpack-python/pulse
New issuehttps://github.com/login?return_to=https://github.com/msgpack/msgpack-python/issues/510
New issuehttps://github.com/login?return_to=https://github.com/msgpack/msgpack-python/issues/510
#554https://github.com/msgpack/msgpack-python/pull/554
1.0.4: sphinx warnings reference target not foundhttps://github.com/msgpack/msgpack-python/issues/510#top
#554https://github.com/msgpack/msgpack-python/pull/554
1.1https://github.com/msgpack/msgpack-python/milestone/4
https://github.com/kloczek
https://github.com/kloczek
kloczekhttps://github.com/kloczek
on Jun 5, 2022https://github.com/msgpack/msgpack-python/issues/510#issue-1260989108
https://www.sphinx-doc.org/en/master/usage/configuration.html#example-of-configuration-filehttps://www.sphinx-doc.org/en/master/usage/configuration.html#example-of-configuration-file
latchset/jwcrypto#289https://github.com/latchset/jwcrypto/pull/289
click-contrib/sphinx-click@abc31069https://github.com/click-contrib/sphinx-click/commit/abc31069
latchset/jwcrypto#289https://github.com/latchset/jwcrypto/pull/289
RDFLib/rdflib-sqlalchemy#95https://github.com/RDFLib/rdflib-sqlalchemy/issues/95
sissaschool/elementpath@bf869d9ehttps://github.com/sissaschool/elementpath/commit/bf869d9e
1.1No due datehttps://github.com/msgpack/msgpack-python/milestone/4
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.