Skip to content

Commit 4d28684

Browse files
authored
deps: Remove upper bound for python and pyarrow (#592)
Remove upper bound for pyarrow in order to use pyarrow 10.0.1 which supports python 3.11
1 parent 442116b commit 4d28684

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"db-dtypes >=1.0.4,<2.0.0",
2727
"numpy >=1.16.6",
2828
"pandas >=1.1.4",
29-
"pyarrow >=3.0.0, <10.0dev",
29+
"pyarrow >=3.0.0",
3030
"pydata-google-auth >=1.4.0",
3131
# Note: google-api-core and google-auth are also included via transitive
3232
# dependency on google-cloud-bigquery, but this library also uses them
@@ -89,6 +89,7 @@
8989
"Programming Language :: Python :: 3.8",
9090
"Programming Language :: Python :: 3.9",
9191
"Programming Language :: Python :: 3.10",
92+
"Programming Language :: Python :: 3.11",
9293
"Operating System :: OS Independent",
9394
"Topic :: Internet",
9495
"Topic :: Scientific/Engineering",
@@ -97,7 +98,7 @@
9798
packages=packages,
9899
install_requires=dependencies,
99100
extras_require=extras,
100-
python_requires=">=3.7, <3.11",
101+
python_requires=">=3.7",
101102
include_package_data=True,
102103
zip_safe=False,
103104
)

0 commit comments

Comments
 (0)