Skip to content

Commit 6c2ac31

Browse files
release-please[bot]gcf-owl-bot[bot]tswast
authored
chore(main): release 0.6.0 (#85)
* chore(main): release 0.6.0 * πŸ¦‰ Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * add geopandas to owlbot * πŸ¦‰ Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Tim SweΓ±a (Swast) <tswast@gmail.com>
1 parent fc04f34 commit 6c2ac31

File tree

6 files changed

+16
-13
lines changed

6 files changed

+16
-13
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.6.0](https://github.com/googleapis/python-bigquery-magics/compare/v0.5.0...v0.6.0) (2025-02-12)
4+
5+
6+
### Features
7+
8+
* Add '--use-geodataframe' argument to return a GeoDataFrame ([#91](https://github.com/googleapis/python-bigquery-magics/issues/91)) ([fc04f34](https://github.com/googleapis/python-bigquery-magics/commit/fc04f343d0e9c5c6b11e784d698c28865c2909cd))
9+
* Add an is_registered global value to indicate whether the extension has been loaded ([#83](https://github.com/googleapis/python-bigquery-magics/issues/83)) ([0bc4473](https://github.com/googleapis/python-bigquery-magics/commit/0bc4473d550c612241ea1428f7538938257b2656))
10+
311
## [0.5.0](https://github.com/googleapis/python-bigquery-magics/compare/v0.4.0...v0.5.0) (2024-12-17)
412

513

β€Žbigquery_magics/version.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.5.0"
15+
__version__ = "0.6.0"

β€Žnoxfile.pyβ€Ž

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,7 @@
3434

3535
DEFAULT_PYTHON_VERSION = "3.8"
3636

37-
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
38-
"3.7",
39-
"3.8",
40-
"3.9",
41-
"3.10",
42-
"3.11",
43-
"3.12",
44-
"3.13",
45-
]
37+
UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.7", "3.8", "3.9", "3.11", "3.12", "3.13"]
4638
UNIT_TEST_STANDARD_DEPENDENCIES = [
4739
"mock",
4840
"asyncmock",
@@ -66,6 +58,7 @@
6658
"3.9": [
6759
"bqstorage",
6860
"bigframes",
61+
"geopandas",
6962
],
7063
"3.10": [
7164
"bqstorage",
@@ -101,16 +94,19 @@
10194
"3.9": [
10295
"bqstorage",
10396
"bigframes",
97+
"geopandas",
10498
],
10599
"3.10": [
106100
"bqstorage",
107101
"bigframes",
102+
"geopandas",
108103
],
109104
"3.11": [],
110105
"3.12": [],
111106
"3.13": [
112107
"bqstorage",
113108
"bigframes",
109+
"geopandas",
114110
],
115111
}
116112

β€Žowlbot.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# ----------------------------------------------------------------------------
3030

3131
extras_storage = ["bqstorage"]
32-
extras_bf = ["bqstorage", "bigframes"]
32+
extras_bf = ["bqstorage", "bigframes", "geopandas"]
3333
extras_by_python = {
3434
"3.7": extras_storage,
3535
"3.8": extras_storage,

β€Žtesting/constraints-3.10.txtβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
# IMPORTANT: When Python 3.9 support is dropped, update these to
22
# match the minimums in setup.py.
3-
geopandas==1.0.1

β€Žtesting/constraints-3.9.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# This is the last pandas 2.0.x release.
66
pandas==2.0.3
77
bigframes==1.17.0
8-
8+
geopandas==1.0.1

0 commit comments

Comments
Β (0)