This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 3999384c3e MINOR: [Python] spell "language" correctly in trove
classifier (#42031)
3999384c3e is described below
commit 3999384c3e05ef8ef804ab651e1bebee8bf7670c
Author: Thomas A Caswell <[email protected]>
AuthorDate: Sat Jun 8 16:08:01 2024 -0400
MINOR: [Python] spell "language" correctly in trove classifier (#42031)
### Rationale for this change
Newer (possibly unreleased) version of the Python build tools check that
the classifiers are valid and the build failed due to this typo.
### What changes are included in this PR?
Fix the spelling of a word
### Are these changes tested?
Build will fail without these changes, has no run-time effect.
### Are there any user-facing changes?
no
Authored-by: Thomas A Caswell <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
python/pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/pyproject.toml b/python/pyproject.toml
index f72c3a91eb..86a90906d0 100644
--- a/python/pyproject.toml
+++ b/python/pyproject.toml
@@ -47,7 +47,7 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
- 'Programming Langauge :: Python :: 3.12',
+ 'Programming Language :: Python :: 3.12',
]
maintainers = [
{name = "Apache Arrow Developers", email = "[email protected]"}