Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions packages/pandas-gbq/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
dependencies = [
"setuptools",
"db-dtypes >=1.0.4,<2.0.0",
"numpy >=1.18.1",
"pandas >=1.1.4",
"pyarrow >= 4.0.0",
"numpy >=1.26.4",
"pandas >=1.5.3",
"pyarrow >= 12.0.0",
# See https://arrow.apache.org/release/22.0.0.html
"pyarrow >= 22.0.0; python_version >= '3.14'",
"pydata-google-auth >=1.5.0",
Expand All @@ -46,7 +46,7 @@
"google-cloud-bigquery-storage >=2.16.2, <3.0.0",
],
"tqdm": ["tqdm>=4.23.0"],
"geopandas": ["geopandas>=0.9.0", "Shapely>=1.8.4"],
"geopandas": ["geopandas>=0.14.4", "Shapely>=1.8.5"],
}

# Setup boilerplate below this line.
Expand Down Expand Up @@ -88,7 +88,6 @@
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -102,7 +101,7 @@
packages=packages,
install_requires=dependencies,
extras_require=extras,
python_requires=">=3.9",
python_requires=">=3.10",
include_package_data=True,
zip_safe=False,
)
23 changes: 23 additions & 0 deletions packages/pandas-gbq/testing/constraints-3.10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This constraints file is used to check that lower bounds
# are correct in setup.py
# List *all* library dependencies and extras in this file.
# Pin the version to the lower bound.
#
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev",
# Then this file should have foo==1.14.0
db-dtypes==1.0.4
numpy==1.26.4
pandas==1.5.3
psutil==5.9.8
pyarrow==12.0.0
pydata-google-auth==1.5.0
google-api-core==2.15.0
google-auth==2.14.1
google-auth-oauthlib==0.7.0
google-cloud-bigquery==3.20.0
packaging==22.0.0
# Extras
google-cloud-bigquery-storage==2.16.2
tqdm==4.23.0
geopandas==0.14.4
Shapely==1.8.5
23 changes: 0 additions & 23 deletions packages/pandas-gbq/testing/constraints-3.9.txt

This file was deleted.

Loading