From 8bf853377edfa701dfcff6f67c06318b794e41a1 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 17 Aug 2020 22:08:06 +0200 Subject: [PATCH 1/4] chore(deps): update dependency matplotlib to v3.3.1 (#224) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [matplotlib](https://matplotlib.org) ([source](https://togithub.com/matplotlib/matplotlib)) | patch | `==3.3.0` -> `==3.3.1` | --- ### Release Notes
matplotlib/matplotlib ### [`v3.3.1`](https://togithub.com/matplotlib/matplotlib/releases/v3.3.1) [Compare Source](https://togithub.com/matplotlib/matplotlib/compare/v3.3.0...v3.3.1) This is the first bugfix release of the 3.3.x series. This release contains several critical bug-fixes: - fix docstring import issues when running Python with optimization - fix `hist` with categorical data, such as with Pandas - fix install on BSD systems - fix nbagg compatibility with Chrome 84+ - fix ordering of scatter marker size in 3D plots - fix performance regression when plotting `Path`s - fix reading from URL in `imread` - fix several regressions with new date epoch handling - fix some bad constrained and tight layout interactions with colorbars - fix use of customized toolbars in TkAgg and WXAgg backends
--- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/python-bigquery). --- samples/snippets/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/snippets/requirements.txt b/samples/snippets/requirements.txt index ea84f6bac..7fe839119 100644 --- a/samples/snippets/requirements.txt +++ b/samples/snippets/requirements.txt @@ -2,5 +2,5 @@ google-cloud-bigquery[pandas,bqstorage,pyarrow]==1.26.1 google-auth-oauthlib==0.4.1 ipython==7.16.1; python_version < '3.7' ipython==7.17.0; python_version >= '3.7' -matplotlib==3.3.0 +matplotlib==3.3.1 pytz==2020.1 From 6754a76bc6e8bbf25c5eccd6f21ca6cdc8100724 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 17 Aug 2020 22:35:57 +0200 Subject: [PATCH 2/4] chore(deps): update dependency llvmlite to <=0.34.0 (#223) Co-authored-by: Tres Seaver --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0a8f6685e..77f32044b 100644 --- a/setup.py +++ b/setup.py @@ -59,8 +59,8 @@ # llvmlite >= 0.32.0 cannot be installed on Python 3.5 and below # (building the wheel fails), thus needs to be restricted. # See: https://github.com/googleapis/python-bigquery/issues/78 - "llvmlite <= 0.33.0;python_version>='3.6'", - "llvmlite <= 0.31.0;python_version<'3.6'", + "llvmlite<=0.34.0;python_version>='3.6'", + "llvmlite<=0.31.0;python_version<'3.6'", ], } From c15efbd1ee4488898fc862768eef701443f492f6 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Tue, 18 Aug 2020 07:01:24 -0400 Subject: [PATCH 3/4] fix: tweak pyarrow extra to soothe PyPI (#230) Release-As: 1.27.1 --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 77f32044b..32d150774 100644 --- a/setup.py +++ b/setup.py @@ -47,8 +47,11 @@ ], "pandas": ["pandas>=0.17.1"], # Exclude PyArrow dependency from Windows Python 2.7. - 'pyarrow: platform_system != "Windows" or python_version >= "3.5"': [ - "pyarrow>=1.0.0, <2.0dev; python_version>='3.4'", + 'pyarrow: platform_system == "Windows"': [ + "pyarrow>=1.0.0, <2.0dev; python_version>='3.5'", + ], + 'pyarrow: platform_system != "Windows"': [ + "pyarrow>=1.0.0, <2.0dev; python_version>='3.5'", # Pyarrow >= 0.17.0 is not compatible with Python 2 anymore. "pyarrow < 0.17.0; python_version < '3.0'", ], From 06a581545040f961a21e92fbe9db640a47829ea2 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2020 11:28:06 +0000 Subject: [PATCH 4/4] chore: release 1.27.1 (#231) :robot: I have created a release \*beep\* \*boop\* --- ### [1.27.1](https://www.github.com/googleapis/python-bigquery/compare/v1.27.0...v1.27.1) (2020-08-18) ### Bug Fixes * tweak pyarrow extra to soothe PyPI ([#230](https://www.github.com/googleapis/python-bigquery/issues/230)) ([c15efbd](https://www.github.com/googleapis/python-bigquery/commit/c15efbd1ee4488898fc862768eef701443f492f6)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb41f761b..41bbda18a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ [1]: https://pypi.org/project/google-cloud-bigquery/#history +### [1.27.1](https://www.github.com/googleapis/python-bigquery/compare/v1.27.0...v1.27.1) (2020-08-18) + + +### Bug Fixes + +* tweak pyarrow extra to soothe PyPI ([#230](https://www.github.com/googleapis/python-bigquery/issues/230)) ([c15efbd](https://www.github.com/googleapis/python-bigquery/commit/c15efbd1ee4488898fc862768eef701443f492f6)) + ## [1.27.0](https://www.github.com/googleapis/python-bigquery/compare/v1.26.1...v1.27.0) (2020-08-15) diff --git a/setup.py b/setup.py index 32d150774..02a89f607 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ name = "google-cloud-bigquery" description = "Google BigQuery API client library" -version = "1.27.0" +version = "1.27.1" # Should be one of: # 'Development Status :: 3 - Alpha' # 'Development Status :: 4 - Beta'