Skip to content

Commit

Permalink
Pyarrow >=15 required.
Browse files Browse the repository at this point in the history
  • Loading branch information
coady committed Jan 22, 2024
1 parent d8689d3 commit 6a926b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## Unreleased
### Changed
* Pyarrow >=15 required
* Strawberry >=0.212 compatible

## [1.4](https://pypi.org/project/graphique/1.4/) - 2023-11-05
### Changed
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "graphique"
dynamic = ["version"]
dynamic = ["version", "dependencies"]
description = "GraphQL service for arrow tables and parquet data sets."
readme = "README.md"
requires-python = ">=3.9"
Expand All @@ -28,7 +28,6 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["pyarrow>=14", "strawberry-graphql[asgi,cli]>=0.198"]

[project.urls]
Homepage = "https://github.com/coady/graphique"
Expand All @@ -45,6 +44,7 @@ packages = ["graphique"]

[tool.setuptools.dynamic]
version = {attr = "graphique.__version__"}
dependencies = {file = "requirements.in"}

[tool.setuptools.package-data]
graphique = ["py.typed"]
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pyarrow>=14
pyarrow>=15
strawberry-graphql[asgi,cli]>=0.198

0 comments on commit 6a926b0

Please sign in to comment.