Skip to content

Commit

Permalink
deps: Remove upper bound for python and pyarrow (#592)
Browse files Browse the repository at this point in the history
Remove upper bound for pyarrow in order to use pyarrow 10.0.1 which supports python 3.11
  • Loading branch information
EugeneTorap committed Nov 28, 2022
1 parent 442116b commit 4d28684
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"db-dtypes >=1.0.4,<2.0.0",
"numpy >=1.16.6",
"pandas >=1.1.4",
"pyarrow >=3.0.0, <10.0dev",
"pyarrow >=3.0.0",
"pydata-google-auth >=1.4.0",
# Note: google-api-core and google-auth are also included via transitive
# dependency on google-cloud-bigquery, but this library also uses them
Expand Down Expand Up @@ -89,6 +89,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
Expand All @@ -97,7 +98,7 @@
packages=packages,
install_requires=dependencies,
extras_require=extras,
python_requires=">=3.7, <3.11",
python_requires=">=3.7",
include_package_data=True,
zip_safe=False,
)

0 comments on commit 4d28684

Please sign in to comment.