Skip to content

Commit 7a6f719

Browse files
authored
chore(deps): update dependency llvmlite to <=0.33.0 for python >= 3.6 (#185)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [llvmlite](http://llvmlite.pydata.org) ([source](https://togithub.com/numba/llvmlite)) | minor | ` <= 0.31.0` -> `<=0.33.0` | --- ### Release Notes <details> <summary>numba/llvmlite</summary> ### [`v0.33.0`](https://togithub.com/numba/llvmlite/blob/master/CHANGE_LOG#v0330-June-10-2020) [Compare Source](https://togithub.com/numba/llvmlite/compare/v0.32.1...v0.33.0) This release upgrades to LLVM 9 and drops support for older LLVM versions. Pull requests: - PR [#&#8203;593](https://togithub.com/numba/llvmlite/issues/593): Fix CUDA with LLVM9 - PR [#&#8203;592](https://togithub.com/numba/llvmlite/issues/592): Fix meta.yaml - PR [#&#8203;591](https://togithub.com/numba/llvmlite/issues/591): buildscripts: Unpin wheel - PR [#&#8203;590](https://togithub.com/numba/llvmlite/issues/590): add python_requires to setup.py - PR [#&#8203;582](https://togithub.com/numba/llvmlite/issues/582): Adds override for LLVM version check, re-formats docs. - PR [#&#8203;581](https://togithub.com/numba/llvmlite/issues/581): Add FAQ entry on LLVM version support. - PR [#&#8203;580](https://togithub.com/numba/llvmlite/issues/580): Trove classifiers may be out of date. - PR [#&#8203;577](https://togithub.com/numba/llvmlite/issues/577): llvmlite wheel building fixes - PR [#&#8203;575](https://togithub.com/numba/llvmlite/issues/575): Update the release date - PR [#&#8203;548](https://togithub.com/numba/llvmlite/issues/548): Upgrade to LLVM9 - PR [#&#8203;521](https://togithub.com/numba/llvmlite/issues/521): Allow instructions to be removed from blocks Authors: - Graham Markall - Jan Vesely - Siu Kwan Lam (core dev) - Stuart Archibald (core dev) - Tim Babb - Valentin Haenel (core dev) ### [`v0.32.1`](https://togithub.com/numba/llvmlite/blob/master/CHANGE_LOG#v0321-May-7-2020) [Compare Source](https://togithub.com/numba/llvmlite/compare/v0.32.0...v0.32.1) This is a small patch release that addresses some packaging issues: Pull requests: - PR 580: Trove classifiers may be out of date. - PR 581: Add FAQ entry on LLVM version support. - PR 582: Adds override for LLVM version check, re-formats docs. Authors: - Stuart Archibald (core dev) - Valentin Haenel (core dev) ### [`v0.32.0`](https://togithub.com/numba/llvmlite/blob/master/CHANGE_LOG#v0320-Apr-16-2020) [Compare Source](https://togithub.com/numba/llvmlite/compare/v0.31.0...v0.32.0) The main changes in this release are the removal of specific code for Python 2 and Python &lt;3.6, and making the code base PEP8 compliant. Pull requests: - PR [#&#8203;577](https://togithub.com/numba/llvmlite/issues/577): llvmlite wheel building fixes - PR [#&#8203;560](https://togithub.com/numba/llvmlite/issues/560): ENH: Better error message - PR [#&#8203;558](https://togithub.com/numba/llvmlite/issues/558): update install docs - PR [#&#8203;556](https://togithub.com/numba/llvmlite/issues/556): binding: Allow empty features list - PR [#&#8203;555](https://togithub.com/numba/llvmlite/issues/555): travis: Cleanup - PR [#&#8203;554](https://togithub.com/numba/llvmlite/issues/554): azure-pipelines: Bump VM images. - PR [#&#8203;552](https://togithub.com/numba/llvmlite/issues/552): Add paragraph on installing from sdist and on non-traditional platforms. - PR [#&#8203;551](https://togithub.com/numba/llvmlite/issues/551): Remove python 2, python &lt; 3.6, fix up, add flake8 - PR [#&#8203;549](https://togithub.com/numba/llvmlite/issues/549): Miscalled method and missing parameter in the documentation - PR [#&#8203;547](https://togithub.com/numba/llvmlite/issues/547): Permit building on Visual Studio 2017 - PR [#&#8203;543](https://togithub.com/numba/llvmlite/issues/543): Update error message in LLVM version check. - PR [#&#8203;540](https://togithub.com/numba/llvmlite/issues/540): update to final release date for 0.31.0 Authors: - Arik Funke - Eric Larson - Jan Vesely - Shan Sikdar - Siu Kwan Lam (core dev) - Stan Seibert (core dev) - Stuart Archibald (core dev) - Vladislav Hrčka </details> --- ### 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. --- - [ ] <!-- rebase-check -->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#googleapis/python-bigquery).
1 parent 04f2094 commit 7a6f719

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@
5959
# llvmlite >= 0.32.0 cannot be installed on Python 3.5 and below
6060
# (building the wheel fails), thus needs to be restricted.
6161
# See: https://github.com/googleapis/python-bigquery/issues/78
62-
"llvmlite <= 0.31.0",
62+
"llvmlite <= 0.33.0;python_version>='3.6'",
63+
"llvmlite <= 0.31.0;python_version<'3.6'",
6364
],
6465
}
6566

0 commit comments

Comments
 (0)