From unknown Sun Jun 22 03:49:05 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#68391 <68391@debbugs.gnu.org> To: bug#68391 <68391@debbugs.gnu.org> Subject: Status: [PATCH 0/3] Add python-pandera Reply-To: bug#68391 <68391@debbugs.gnu.org> Date: Sun, 22 Jun 2025 10:49:05 +0000 retitle 68391 [PATCH 0/3] Add python-pandera reassign 68391 guix-patches submitter 68391 Troy Figiel severity 68391 normal tag 68391 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 11 16:38:36 2024 Received: (at submit) by debbugs.gnu.org; 11 Jan 2024 21:38:36 +0000 Received: from localhost ([127.0.0.1]:34178 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rO2l2-0006h1-Is for submit@debbugs.gnu.org; Thu, 11 Jan 2024 16:38:36 -0500 Received: from lists.gnu.org ([2001:470:142::17]:45308) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rO2kx-0006gc-HX for submit@debbugs.gnu.org; Thu, 11 Jan 2024 16:38:35 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rO2ku-0001xC-4F for guix-patches@gnu.org; Thu, 11 Jan 2024 16:38:28 -0500 Received: from mout-p-202.mailbox.org ([80.241.56.172]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1rO2ks-0008Cx-9d for guix-patches@gnu.org; Thu, 11 Jan 2024 16:38:27 -0500 Received: from smtp1.mailbox.org (smtp1.mailbox.org [IPv6:2001:67c:2050:b231:465::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-202.mailbox.org (Postfix) with ESMTPS id 4T9yhY0GhWz9sxf for ; Thu, 11 Jan 2024 22:38:21 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=troyfigiel.com; s=MBO0001; t=1705009101; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=W4spf9En1eyjga+zFPVm20HG0FyOV/UGpPTi7tmIOs8=; b=QnrjiS98d7P9A/NxcohVipA52dl978l2MJMTRVzfvc3UrwYWsO4mFAG79bLoq7UOg/Rn/7 9TrKWwCzbjQtWVzn+X3unzt1p2ITBUQOqdJBGpNRnmQ8Zu18lG6IBZqPYkWnk0ZkWZdeRT qZgchH/ctfamDKr3KtL86XTExzFeOt6iFJ0NwPWWefxtyGzu8JLvKS1iBzexkr5WmT9hSh g+fjUUqsqumvpNschMduzaZOdjEmwnosAuw6LXLddfR/YsPx1wnR6fslsXIxyaTEcym8gL RyFo/wC0XBEzS9qhDlHg5bUbUk1OcsQ6JNiPM6a+B2w9ZDNcpGD+lVb1YwcZYw== From: Troy Figiel To: guix-patches@gnu.org Subject: [PATCH 0/3] Add python-pandera Date: Thu, 11 Jan 2024 22:35:11 +0100 Message-ID: <87edentut3.fsf@troyfigiel.com> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 4T9yhY0GhWz9sxf Received-SPF: pass client-ip=80.241.56.172; envelope-from=troy@troyfigiel.com; helo=mout-p-202.mailbox.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) This patch series adds python-pandera and its dependencies. Unfortunately, directly upgrading python-typeguard to a more recent version breaks a variety of packages (it has 300+ dependents). For that reason, python-typeguard-4 has been introduced. Troy Figiel (3): gnu: Add python-typeguard-4. gnu: Add python-pandas-stubs. gnu: Add python-pandera. gnu/packages/python-science.scm | 133 ++++++++++++++++++++++++++++++++ gnu/packages/python-xyz.scm | 18 +++++ 2 files changed, 151 insertions(+) base-commit: 637b72e2b83a6332849218ef1f193124fa8239eb -- 2.42.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 11 16:40:10 2024 Received: (at 68391) by debbugs.gnu.org; 11 Jan 2024 21:40:10 +0000 Received: from localhost ([127.0.0.1]:34184 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rO2mY-0006lL-16 for submit@debbugs.gnu.org; Thu, 11 Jan 2024 16:40:10 -0500 Received: from mout-p-101.mailbox.org ([80.241.56.151]:32768) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rO2mV-0006kg-HR for 68391@debbugs.gnu.org; Thu, 11 Jan 2024 16:40:08 -0500 Received: from smtp2.mailbox.org (smtp2.mailbox.org [IPv6:2001:67c:2050:b231:465::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-101.mailbox.org (Postfix) with ESMTPS id 4T9ykV24CVz9sWc for <68391@debbugs.gnu.org>; Thu, 11 Jan 2024 22:40:02 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=troyfigiel.com; s=MBO0001; t=1705009202; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=1C6Ui/u2s4CtOYSFCxtKhLWuxMbYiiwlzznA1sBPgnw=; b=JB8ARGatppNoCYsWLWmZ0HDXUEtGGkwpzsAH/elX93RSEWQOXDyZIznGa1OvddlrNHxW84 PtgUohWS4moavHplIogZ8LwZ7MbTwtNw1nrytJNKGiv4gqwb84CBvFlJ7e1WEMHhGPFnS0 JXPgct2aMvNyH8aAMOqqTuL5iB/ywCXq/9CZhRvyoUM/QXAQ6cKDvmvmK61rrdUeKi6FQe bX1p09jeZxuTzcLNNCPinJq6x8TWSpoyHdznHXCgYMbIpIPnREdO1junmzK3f0IY2T5/gN bhyz9eLJZKUG92/zMeW3eCd0f7gL7268u+Uy/P+w5AD2psDp//PWuhRE5d2Dmw== From: Troy Figiel To: 68391@debbugs.gnu.org Subject: [PATCH 1/3] gnu: Add python-typeguard-4. Date: Thu, 11 Jan 2024 21:54:56 +0100 Message-ID: <87cyu7tuq6.fsf@troyfigiel.com> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 4T9ykV24CVz9sWc X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 68391 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) * gnu/packages/python-xyz.scm (python-typeguard-4): New variable. --- gnu/packages/python-xyz.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 46a5e81cb4..d7bbdbdb13 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -24804,6 +24804,24 @@ (define-public python-typeguard with PEP 484 argument (and return) type annotations.") (license license:expat))) +(define-public python-typeguard-4 + (package + (inherit python-typeguard) + (name "python-typeguard") + ;; This is the latest version we can use, becaue python-typeguard >= 4.0.1 + ;; requires python-typing-extensions >= 4.7.0. + (version "4.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "typeguard" version)) + (sha256 + (base32 "11yrc7pv2fajmicwiyc92sb5gphlw3zbxww8f2prrsh6rgdv6kqr")))) + (build-system pyproject-build-system) + (arguments + '()) + (propagated-inputs (list python-typing-extensions)))) + (define-public bpython (package (name "bpython") -- 2.42.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 11 16:42:03 2024 Received: (at 68391) by debbugs.gnu.org; 11 Jan 2024 21:42:04 +0000 Received: from localhost ([127.0.0.1]:34189 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rO2oN-0006or-Gb for submit@debbugs.gnu.org; Thu, 11 Jan 2024 16:42:03 -0500 Received: from mout-p-102.mailbox.org ([2001:67c:2050:0:465::102]:52418) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rO2oL-0006oN-SM for 68391@debbugs.gnu.org; Thu, 11 Jan 2024 16:42:03 -0500 Received: from smtp2.mailbox.org (smtp2.mailbox.org [10.196.197.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-102.mailbox.org (Postfix) with ESMTPS id 4T9ymh20CBz9sDq for <68391@debbugs.gnu.org>; Thu, 11 Jan 2024 22:41:56 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=troyfigiel.com; s=MBO0001; t=1705009316; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=bpY5dtJsQ3MqrR0sA8gKHyCDC6s48dPmOxr6hzHYBoE=; b=0dr8Id78YZwJyT4Y1YEtjHYiRQbVzjG2KLMl+6eN0QN8YPlVnr3Q2IpvjqUxDcbruzOXFP 5cunJxBwWz87VWl+6BF1W7TpEBqRO6V73P+zGu+3ac0h9FTuii5raCBrvN03MG+LZ9kMdL BGR9BStOKM80A1U9JB93JNPidMusUOcrUp5GA3U9f/T2CzucM/Gt4i7aIY5sA2EBoy3Zk3 M6Ww8peIcjg8dVuA6Q5oSwzR08jRDEFxVOOlWIBCcVN7DyKv8wCw68BOD3Uzb6RPuWkfVw fMWHNFsILnUaaDAFAWPrjbM7w0vN0mhVwVQsrFdzhmuLmkEMjF1ytnsxCoghDQ== From: Troy Figiel To: 68391@debbugs.gnu.org Subject: [PATCH 2/3] gnu: Add python-pandas-stubs. Date: Thu, 11 Jan 2024 21:58:28 +0100 Message-ID: <87bk9rtun0.fsf@troyfigiel.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 68391 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) * gnu/packages/python-science.scm (python-pandas-stubs): New variable. --- gnu/packages/python-science.scm | 58 +++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 8065de0e99..d8e0b343fb 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -561,6 +561,64 @@ (define-public python-pandas doing practical, real world data analysis in Python.") (license license:bsd-3))) +(define-public python-pandas-stubs + (package + (name "python-pandas-stubs") + ;; The versioning follows that of Pandas and uses the date of the + ;; python-pandas-stubs release. This is the latest version of + ;; python-pandas-stubs for python-pandas 1.4.4. + (version "1.4.4.220919") + (source + (origin + ;; No tests in the PyPI tarball. + (method git-fetch) + (uri (git-reference + (url "https://github.com/pandas-dev/pandas-stubs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14fhj1y71akwl41ws7cpazsbq5b8wf4rwaydqq2h39q7gylpcp99")))) + (build-system pyproject-build-system) + (arguments + '(#:phases (modify-phases %standard-phases + (add-before 'check 'prepare-x + (lambda _ + (system "Xvfb &") + (setenv "DISPLAY" ":0") + ;; xsel needs to write a log file. + (setenv "HOME" + (getcwd))))))) + (propagated-inputs (list python-types-pytz)) + ;; Add python-fastparquet to native inputs once it has been packaged. Its + ;; tests will be skipped for now. + (native-inputs (list python-lxml + python-matplotlib + python-pandas + python-poetry-core + python-pyarrow + python-pyreadstat + python-pytest + python-scipy + python-sqlalchemy + python-tables + python-tabulate + python-xarray + ;; Needed to test clipboard support. + which + xclip + xorg-server-for-tests + xsel)) + (home-page "https://pandas.pydata.org") + (synopsis "Type annotations for pandas") + (description + "This package contains public type stubs for @code{python-pandas}, +following the convention of providing stubs in a separate package, as +specified in @acronym{PEP, Python Enhancement Proposal} 561. The stubs cover +the most typical use cases of @code{python-pandas}. In general, these stubs +are narrower than what is possibly allowed by pandas, but follow a convention +of suggesting best recommended practices for using @code{python-pandas}.") + (license license:bsd-3))) + (define-public python-pythran (package (name "python-pythran") -- 2.42.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 11 16:42:57 2024 Received: (at 68391) by debbugs.gnu.org; 11 Jan 2024 21:42:57 +0000 Received: from localhost ([127.0.0.1]:34193 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rO2pF-0006q5-0H for submit@debbugs.gnu.org; Thu, 11 Jan 2024 16:42:57 -0500 Received: from mout-p-102.mailbox.org ([80.241.56.152]:52710) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rO2pD-0006ps-9U for 68391@debbugs.gnu.org; Thu, 11 Jan 2024 16:42:56 -0500 Received: from smtp1.mailbox.org (smtp1.mailbox.org [IPv6:2001:67c:2050:b231:465::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-102.mailbox.org (Postfix) with ESMTPS id 4T9ynj6nPLz9sWl for <68391@debbugs.gnu.org>; Thu, 11 Jan 2024 22:42:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=troyfigiel.com; s=MBO0001; t=1705009369; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=/2RVXWPrlnV/U3j7AQGtIZ2bWAXJ7gIhgR67iN48w3w=; b=WGOxniCodoFnYxVXsK/BLnwxYcmY2r7olLz3z/skoAnodOHAyEurAUTEfb9qRhkzGQTyPH k/kodR8o0Pe7aboy++qCushPIihGyZN0Yd0qqxMWwmnUwRii24gzP+atwllxdx10CFrU2U bwNUNkaRhqLOwVIWYJBUj2pZtrWQlCUxOagZEOqWt60SIdapt47nGkrlWs5bVYY5hon5jK IG0b8MvqO/1QJjfI2sZybBjx/tGShxRaw4HMEhunDn4t6Vq3+DnUAfIe0p8WbLvCwniMJ6 js2BXUlT4u1mNeq/gA0zHmbTsemLbrC/0RYXHZxARimbIUt9LuER/5p3bYDoRQ== From: Troy Figiel To: 68391@debbugs.gnu.org Subject: [PATCH 3/3] gnu: Add python-pandera. Date: Thu, 11 Jan 2024 22:17:50 +0100 Message-ID: <87a5pbtuli.fsf@troyfigiel.com> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 4T9ynj6nPLz9sWl X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 68391 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) * gnu/packages/python-science.scm (python-pandera): New variable. --- gnu/packages/python-science.scm | 75 +++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index d8e0b343fb..f82cbdb79c 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -619,6 +619,81 @@ (define-public python-pandas-stubs of suggesting best recommended practices for using @code{python-pandas}.") (license license:bsd-3))) +(define-public python-pandera + (package + (name "python-pandera") + (version "0.17.2") + (source + (origin + ;; No tests in the PyPI tarball. + (method git-fetch) + (uri (git-reference + (url "https://github.com/unionai-oss/pandera") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mnqk583z90k1n0z3lfa4rd0ng40v7hqfk7phz5gjmxlzfjbxa1x")) + (modules '((guix build utils))) + ;; These tests require PySpark. We need to remove the entire directory, + ;; since the conftest.py in this directory contains a PySpark import. + ;; (See: https://github.com/pytest-dev/pytest/issues/7452) + (snippet '(delete-file-recursively "tests/pyspark")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags '(list "-k" + (string-append + ;; Needs python-pandas >= 1.5 + "not test_python_std_list_dict_generics" + " and not test_python_std_list_dict_empty_and_none" + " and not test_pandas_modules_importable")))) + ;; Pandera comes with a lot of extras. We test as many as possible, but do + ;; not include all of them in the propagated-inputs. Currently, we have to + ;; skip the pyspark and io tests due to missing packages python-pyspark + ;; and python-frictionless. + (propagated-inputs (list python-hypothesis ;strategies extra + python-multimethod + python-numpy + python-packaging + python-pandas + python-pandas-stubs ;mypy extra + python-pydantic + python-scipy ;hypotheses extra + python-typeguard-4 + python-typing-inspect + python-wrapt)) + (native-inputs (list python-dask ;dask extra + python-fastapi ;fastapi extra + python-geopandas ;geopandas extra + python-modin ;modin extra + python-pyarrow ;needed to run fastapi tests + python-pytest + python-pytest-asyncio + python-sphinx + python-uvicorn)) ;needed to run fastapi tests + (home-page "https://github.com/unionai-oss/pandera") + (synopsis "Perform data validation on dataframe-like objects") + (description + "@code{python-pandera} provides a flexible and expressive API for +performing data validation on dataframe-like objects to make data processing +pipelines more readable and robust. Dataframes contain information that +@code{python-pandera} explicitly validates at runtime. This is useful in +production-critical data pipelines or reproducible research settings. With +@code{python-pandera}, you can: + +@itemize +@item Define a schema once and use it to validate different dataframe types. +@item Check the types and properties of columns. +@item Perform more complex statistical validation like hypothesis testing. +@item Seamlessly integrate with existing data pipelines via function decorators. +@item Define dataframe models with the class-based API with pydantic-style syntax. +@item Synthesize data from schema objects for property-based testing. +@item Lazily validate dataframes so that all validation rules are executed. +@item Integrate with a rich ecosystem of tools like @code{python-pydantic}, +@code{python-fastapi} and @code{python-mypy}. +@end itemize") + (license license:expat))) + (define-public python-pythran (package (name "python-pythran") -- 2.42.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 11 17:06:09 2024 Received: (at 68391) by debbugs.gnu.org; 11 Jan 2024 22:06:10 +0000 Received: from localhost ([127.0.0.1]:34211 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rO3Bh-0004TN-KK for submit@debbugs.gnu.org; Thu, 11 Jan 2024 17:06:09 -0500 Received: from mout-p-202.mailbox.org ([80.241.56.172]:38062) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rO3Bd-0004Sj-N3 for 68391@debbugs.gnu.org; Thu, 11 Jan 2024 17:06:08 -0500 Received: from smtp102.mailbox.org (smtp102.mailbox.org [10.196.197.102]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-202.mailbox.org (Postfix) with ESMTPS id 4T9zJS2J0kz9spY for <68391@debbugs.gnu.org>; Thu, 11 Jan 2024 23:06:00 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=troyfigiel.com; s=MBO0001; t=1705010760; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=UYYEkLZMqLWXTqsAc9R7L6ZgD/fE4FZEQ28ds+OO8JI=; b=0pUF6ftS3ebO3Hu8/yHiGf0wb0l3HE9ku+RXxujAJQIMQjwQKZgSoC+6MZjpJOwA3mt1I5 zD0Z4Vur1galGn/PFbaEYB5CbY4m1Cs1KUzZngJ+6XKZBQxjMGcRAkpA2DcUpk98Pm+gHo Rx0YVlz/q/3iAtugSeJd1flGg+Gzq6Dh+bFgZK7vkDT1rhZZdaYpqvE4ixK3pVUuu0EffN r6mHZ7TrWiQxS8bXrn0Xdm7KzuSIsyJwfRq+8bVzgLQvUUnRpaftjZgACxxHXaIf2GFn2K 7VMG6PYomTtzbqWd9auML4HPrylZcODSMkDp3F0R2E4vx21EEUGDeea26/0zfw== From: Troy Figiel To: 68391@debbugs.gnu.org Subject: Small description adjustment Date: Thu, 11 Jan 2024 23:05:55 +0100 Message-ID: <878r4v4jb0.fsf@troyfigiel.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 68391 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) I just noticed there is a single `pandas' I did not rewrite as `@code{python-pandas}' in the description of `python-pandas-stubs'. If the patches look good as they are, I kindly ask a committer to make that small adjustment before applying them, as to keep the look of the description uniform. Thanks! Troy From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 17 05:06:08 2024 Received: (at 68391-done) by debbugs.gnu.org; 17 Jan 2024 10:06:08 +0000 Received: from localhost ([127.0.0.1]:50848 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rQ2oC-0006XZ-Dt for submit@debbugs.gnu.org; Wed, 17 Jan 2024 05:06:08 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:35230) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rQ2oA-0006Wu-6m for 68391-done@debbugs.gnu.org; Wed, 17 Jan 2024 05:06:06 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rQ2o3-0006mL-PT; Wed, 17 Jan 2024 05:05:59 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=zBUTY3R/rauxWju6F+gjyoJ6IFDaKi4lFhMyUDnDSyM=; b=XscsyIVsCpdk0sp8jZAP uZNI6JYsw1t8roE52GBBxYWWeKAhxYvTa/SDjkjAXYIKM5G0OnXgy7lo+XVQJ6pMy1XP4jZke8SvC j6/mpCD7LRjcMfoY/yCU8UvgATbvLQF/X19u8SufgkyQFEIsmH90F+y8CW7USELGjW26RzRvgC3kA 2Z8a1PVC7CVUpBKb1ZtCMIJwsmfUqTyHlvHaKrIejypgzmprNKRYO7t8FMCA6OfBkI1c8Yri2CZHd FFBcA+t62dMPHpM4SUGNbPwarKmgmJiTBLifsdgb6An+petvRQC40/oKgxYW0QFimjBkqpGpA8y0G 9+wdmQj6MZzNPQ==; From: Mathieu Othacehe To: Troy Figiel Subject: Re: [bug#68391] Small description adjustment In-Reply-To: <878r4v4jb0.fsf@troyfigiel.com> (Troy Figiel's message of "Thu, 11 Jan 2024 23:05:55 +0100") References: <87edentut3.fsf@troyfigiel.com> <878r4v4jb0.fsf@troyfigiel.com> Date: Wed, 17 Jan 2024 11:05:58 +0100 Message-ID: <87le8ojmux.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 68391-done Cc: 68391-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hey, > I just noticed there is a single `pandas' I did not rewrite as > `@code{python-pandas}' in the description of `python-pandas-stubs'. If > the patches look good as they are, I kindly ask a committer to make that > small adjustment before applying them, as to keep the look of the > description uniform. Fixed that and a typo in the first patch before applying, Thanks, Mathieu From unknown Sun Jun 22 03:49:05 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 14 Feb 2024 12:24:16 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator