René's URL Explorer Experiment


Title: [Bug]: Setting `text.usetex=True` in `pyplot.rcParams` Raises FIPS Compliance Errors · Issue #29603 · matplotlib/matplotlib · GitHub

Open Graph Title: [Bug]: Setting `text.usetex=True` in `pyplot.rcParams` Raises FIPS Compliance Errors · Issue #29603 · matplotlib/matplotlib

X Title: [Bug]: Setting `text.usetex=True` in `pyplot.rcParams` Raises FIPS Compliance Errors · Issue #29603 · matplotlib/matplotlib

Description: Bug summary If you use a FIPS (Federal Information Processing Standards) compliant Python install, then you cannot use pyplot.show to display a plot with plt.rcParams['text.usetex'] = True due to a hashlib.md5 call in texmanager.py. This...

Open Graph Description: Bug summary If you use a FIPS (Federal Information Processing Standards) compliant Python install, then you cannot use pyplot.show to display a plot with plt.rcParams['text.usetex'] = True due to a...

X Description: Bug summary If you use a FIPS (Federal Information Processing Standards) compliant Python install, then you cannot use pyplot.show to display a plot with plt.rcParams['text.usetex'] = True ...

Opengraph URL: https://github.com/matplotlib/matplotlib/issues/29603

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[Bug]: Setting `text.usetex=True` in `pyplot.rcParams` Raises FIPS Compliance Errors","articleBody":"### Bug summary\n\nIf you use a FIPS (Federal Information Processing Standards) compliant Python install, then you cannot use `pyplot.show` to display a plot with  `plt.rcParams['text.usetex'] = True` due to a `hashlib.md5` call in [texmanager.py](https://github.com/matplotlib/matplotlib/blob/24bb51c834f7e6714e9ad8e24f7edb6c903028fe/lib/matplotlib/texmanager.py#L171).\n\nThis is similar to https://github.com/matplotlib/matplotlib/issues/18192 (and much of this report is modeled off of that)\n\nThere are 3 places in the code that seem to still use `hashlib.md5`:\n\n- https://github.com/matplotlib/matplotlib/blob/24bb51c834f7e6714e9ad8e24f7edb6c903028fe/lib/matplotlib/texmanager.py#L171\n- https://github.com/matplotlib/matplotlib/blob/24bb51c834f7e6714e9ad8e24f7edb6c903028fe/lib/matplotlib/sphinxext/mathmpl.py#L149\n- https://github.com/matplotlib/matplotlib/blob/24bb51c834f7e6714e9ad8e24f7edb6c903028fe/lib/matplotlib/testing/compare.py#L49\n\nThere probably isn't a great reason not to replace md5 with sha256 (or something else) in these locations.\n\n### Code for reproduction\n\nThe big requirement here is a FIPS compliant system or at least a Python install compiled to be FIPS compliant. Then the following code will reproduce the error.\n\nTo reproduce,\n\n1. Run `sudo fips-mode-setup --enable \u0026\u0026 sudo reboot` (there may be other methods)\n1. After the reboot I confirmed FIPS mode had been enabled by running `fips-mode-setup --check` and it returned FIPS mode is enabled.\n1. `python3 -m venv .venv`\n1. `./.venv/bin/python -m pip install matplotlib==3.10.0`\n1. `./.venv/bin/python fips_error.py`. The contents of `fips_error.py` is listed below.\n\n```python\nimport matplotlib.pyplot as plt\n\nplt.rcParams['text.usetex'] = True\nfig, ax = plt.subplots()\nplt.text(0, 0, r'$\\hat{\\mathbf{x}}$')\nplt.show()\n```\n\n### Actual outcome\n\n```\n$ python fips_error.py \nException in Tkinter callback\nTraceback (most recent call last):\n  File \"/usr/lib64/python3.11/tkinter/__init__.py\", line 1967, in __call__\n    return self.func(*args)\n           ^^^^^^^^^^^^^^^^\n  File \"/usr/lib64/python3.11/tkinter/__init__.py\", line 861, in callit\n    func(*args)\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/backends/_backend_tk.py\", line 274, in idle_draw\n    self.draw()\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/backends/backend_tkagg.py\", line 10, in draw\n    super().draw()\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/backends/backend_agg.py\", line 382, in draw\n    self.figure.draw(self.renderer)\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/artist.py\", line 94, in draw_wrapper\n    result = draw(artist, renderer, *args, **kwargs)\n             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/artist.py\", line 71, in draw_wrapper\n    return draw(artist, renderer)\n           ^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/figure.py\", line 3257, in draw\n    mimage._draw_list_compositing_images(\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/image.py\", line 134, in _draw_list_compositing_images\n    a.draw(renderer)\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/artist.py\", line 71, in draw_wrapper\n    return draw(artist, renderer)\n           ^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/axes/_base.py\", line 3181, in draw\n    mimage._draw_list_compositing_images(\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/image.py\", line 134, in _draw_list_compositing_images\n    a.draw(renderer)\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/artist.py\", line 71, in draw_wrapper\n    return draw(artist, renderer)\n           ^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/axis.py\", line 1416, in draw\n    tlb1, tlb2 = self._get_ticklabel_bboxes(ticks_to_draw, renderer)\n                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/axis.py\", line 1343, in _get_ticklabel_bboxes\n    return ([tick.label1.get_window_extent(renderer)\n            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/axis.py\", line 1343, in \u003clistcomp\u003e\n    return ([tick.label1.get_window_extent(renderer)\n             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/text.py\", line 969, in get_window_extent\n    bbox, info, descent = self._get_layout(self._renderer)\n                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/text.py\", line 373, in _get_layout\n    _, lp_h, lp_d = _get_text_metrics_with_cache(\n                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/text.py\", line 69, in _get_text_metrics_with_cache\n    return _get_text_metrics_with_cache_impl(\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/text.py\", line 77, in _get_text_metrics_with_cache_impl\n    return renderer_ref().get_text_width_height_descent(text, fontprop, ismath)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/backends/backend_agg.py\", line 211, in get_text_width_height_descent\n    return super().get_text_width_height_descent(s, prop, ismath)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/backend_bases.py\", line 566, in get_text_width_height_descent\n    return self.get_texmanager().get_text_width_height_descent(\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/texmanager.py\", line 360, in get_text_width_height_descent\n    dvifile = cls.make_dvi(tex, fontsize)\n              ^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/texmanager.py\", line 276, in make_dvi\n    basefile = cls.get_basefile(tex, fontsize)\n               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/data/users/ktm/matplotlib_test/.venv/lib64/python3.11/site-packages/matplotlib/texmanager.py\", line 171, in get_basefile\n    filehash = hashlib.md5(src.encode('utf-8')).hexdigest()\n               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nValueError: [digital envelope routines: EVP_DigestInit_ex] disabled for FIPS\n```\n\n### Expected outcome\n\nNo exception related to FIPS and the plot is created.\n\n### Additional information\n\n```\n$ .venv/bin/python -m pip list\nPackage         Version\n--------------- -----------\ncontourpy       1.3.1\ncycler          0.12.1\nfonttools       4.56.0\nkiwisolver      1.4.8\nmatplotlib      3.10.0\nnumpy           2.2.2\npackaging       24.2\npillow          11.1.0\npip             22.3.1\npyparsing       3.2.1\npython-dateutil 2.9.0.post0\nsetuptools      65.5.1\nsix             1.17.0\n```\n\n### Operating system\n\nRHEL 8.10 (with FIPS enabled)\n\n### Matplotlib Version\n\n3.10.0\n\n### Matplotlib Backend\n\ntkagg\n\n### Python version\n\nPython 3.11.9\n","author":{"url":"https://github.com/martinky24","@type":"Person","name":"martinky24"},"datePublished":"2025-02-11T18:25:35.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/29603/matplotlib/issues/29603"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:f5fc4ef0-2b50-dc0b-36e1-b2d54763176d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idC3AA:1357D4:EC591E:13EF545:6A5174C2
html-safe-nonce064dcf2bdec94209600671a536aae19bcefc4aa8a3d6ccbced41e7d82bc2980a
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDM0FBOjEzNTdENDpFQzU5MUU6MTNFRjU0NTo2QTUxNzRDMiIsInZpc2l0b3JfaWQiOiI4Njg4MjcwMDU2MTYzOTk2ODY2IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacb227aca7d53be6325687280ed5381c6219c677783e34dc11c0605d0f36a6792b
hovercard-subject-tagissue:2846166059
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/matplotlib/matplotlib/29603/issue_layout
twitter:imagehttps://opengraph.githubassets.com/8ca0027e442091924d2de8b1ffb3168de983d855f789941513f95e349cbb7ec7/matplotlib/matplotlib/issues/29603
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/8ca0027e442091924d2de8b1ffb3168de983d855f789941513f95e349cbb7ec7/matplotlib/matplotlib/issues/29603
og:image:altBug summary If you use a FIPS (Federal Information Processing Standards) compliant Python install, then you cannot use pyplot.show to display a plot with plt.rcParams['text.usetex'] = True due to a...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamemartinky24
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
go-importgithub.com/matplotlib/matplotlib git https://github.com/matplotlib/matplotlib.git
octolytics-dimension-user_id215947
octolytics-dimension-user_loginmatplotlib
octolytics-dimension-repository_id1385122
octolytics-dimension-repository_nwomatplotlib/matplotlib
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1385122
octolytics-dimension-repository_network_root_nwomatplotlib/matplotlib
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
releaseb19955a9dd40fd99462443f7911b522d7216776a
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/29603#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F29603
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
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
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
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/enterprise/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%2Fmatplotlib%2Fmatplotlib%2Fissues%2F29603
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=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/issues/29603
Reloadhttps://github.com/matplotlib/matplotlib/issues/29603
Reloadhttps://github.com/matplotlib/matplotlib/issues/29603
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/29603
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/29603
Notifications https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Fork 8.4k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Star 23k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Code https://github.com/matplotlib/matplotlib
Issues 1.1k https://github.com/matplotlib/matplotlib/issues
Pull requests 409 https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality 0 https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Code https://github.com/matplotlib/matplotlib
Issues https://github.com/matplotlib/matplotlib/issues
Pull requests https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
#29700https://github.com/matplotlib/matplotlib/pull/29700
#29608https://github.com/matplotlib/matplotlib/pull/29608
[Bug]: Setting text.usetex=True in pyplot.rcParams Raises FIPS Compliance Errorshttps://github.com/matplotlib/matplotlib/issues/29603#top
#29700https://github.com/matplotlib/matplotlib/pull/29700
#29608https://github.com/matplotlib/matplotlib/pull/29608
v3.10.1https://github.com/matplotlib/matplotlib/milestone/98
https://github.com/martinky24
martinky24https://github.com/martinky24
on Feb 11, 2025https://github.com/matplotlib/matplotlib/issues/29603#issue-2846166059
texmanager.pyhttps://github.com/matplotlib/matplotlib/blob/24bb51c834f7e6714e9ad8e24f7edb6c903028fe/lib/matplotlib/texmanager.py#L171
#18192https://github.com/matplotlib/matplotlib/issues/18192
matplotlib/lib/matplotlib/texmanager.pyhttps://github.com/matplotlib/matplotlib/blob/24bb51c834f7e6714e9ad8e24f7edb6c903028fe/lib/matplotlib/texmanager.py#L171
24bb51chttps://github.com/matplotlib/matplotlib/commit/24bb51c834f7e6714e9ad8e24f7edb6c903028fe
matplotlib/lib/matplotlib/sphinxext/mathmpl.pyhttps://github.com/matplotlib/matplotlib/blob/24bb51c834f7e6714e9ad8e24f7edb6c903028fe/lib/matplotlib/sphinxext/mathmpl.py#L149
24bb51chttps://github.com/matplotlib/matplotlib/commit/24bb51c834f7e6714e9ad8e24f7edb6c903028fe
matplotlib/lib/matplotlib/testing/compare.pyhttps://github.com/matplotlib/matplotlib/blob/24bb51c834f7e6714e9ad8e24f7edb6c903028fe/lib/matplotlib/testing/compare.py#L49
24bb51chttps://github.com/matplotlib/matplotlib/commit/24bb51c834f7e6714e9ad8e24f7edb6c903028fe
v3.10.1https://github.com/matplotlib/matplotlib/milestone/98
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.