Skip to content

Commit

Permalink
Change requires-python version (#924)
Browse files Browse the repository at this point in the history
  • Loading branch information
kosiew authored Oct 18, 2024
1 parent 0905f5f commit fc7e3e5
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ build-backend = "maturin"
name = "datafusion"
description = "Build and run queries against data"
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.6"
license = { file = "LICENSE.txt" }
requires-python = ">=3.7"
keywords = ["datafusion", "dataframe", "rust", "query-engine"]
classifier = [
"Development Status :: 2 - Pre-Alpha",
Expand All @@ -42,10 +42,7 @@ classifier = [
"Programming Language :: Python",
"Programming Language :: Rust",
]
dependencies = [
"pyarrow>=11.0.0",
"typing-extensions;python_version<'3.13'",
]
dependencies = ["pyarrow>=11.0.0", "typing-extensions;python_version<'3.13'"]

[project.urls]
homepage = "https://datafusion.apache.org/python"
Expand All @@ -58,9 +55,7 @@ profile = "black"
[tool.maturin]
python-source = "python"
module-name = "datafusion._internal"
include = [
{ path = "Cargo.lock", format = "sdist" }
]
include = [{ path = "Cargo.lock", format = "sdist" }]
exclude = [".github/**", "ci/**", ".asf.yaml"]
# Require Cargo.lock is up to date
locked = true
Expand Down

0 comments on commit fc7e3e5

Please sign in to comment.