From 4c8d8f322688e8a7a70d5bd78670d1aac496c035 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Wed, 5 Mar 2025 14:53:28 +0000 Subject: [PATCH] fix: resolve issue where pre-release versions of dependencies are installed --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 15f99a2..d62b227 100644 --- a/setup.py +++ b/setup.py @@ -28,8 +28,8 @@ # 'Development Status :: 5 - Production/Stable'`` release_status = "Development Status :: 4 - Beta" dependencies = [ - "db-dtypes>=0.3.0,<2.0.0dev", - "google-cloud-bigquery >= 3.13.0, <4.0.0dev", + "db-dtypes>=0.3.0,<2.0.0", + "google-cloud-bigquery >= 3.13.0, <4.0.0", "ipywidgets>=7.7.1", "ipython>=7.23.1", "ipykernel>=5.5.6", @@ -37,22 +37,22 @@ "pandas>=1.1.0", "pyarrow >= 3.0.0", "pydata-google-auth >=1.5.0", - "tqdm >= 4.7.4, <5.0.0dev", + "tqdm >= 4.7.4, <5.0.0", ] extras = { # bqstorage had a period where it was a required dependency, and has been # moved back to optional due to bloat. See # https://github.com/googleapis/python-bigquery/issues/1196 for more background. "bqstorage": [ - "google-cloud-bigquery-storage >= 2.6.0, <3.0.0dev", + "google-cloud-bigquery-storage >= 2.6.0, <3.0.0", # Due to an issue in pip's dependency resolver, the `grpc` extra is not # installed, even though `google-cloud-bigquery-storage` specifies it # as `google-api-core[grpc]`. We thus need to explicitly specify it here. # See: https://github.com/googleapis/python-bigquery/issues/83 The # grpc.Channel.close() method isn't added until 1.32.0. # https://github.com/grpc/grpc/pull/15254 - "grpcio >= 1.47.0, < 2.0dev", - "grpcio >= 1.49.1, < 2.0dev; python_version>='3.11'", + "grpcio >= 1.47.0, < 2.0.0", + "grpcio >= 1.49.1, < 2.0.0; python_version>='3.11'", ], "bigframes": ["bigframes >= 1.17.0"], "geopandas": ["geopandas >= 1.0.1"],