Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit adba47f

Browse files
committed
Merge branch 'master' of https://github.com/IntelPython/hpat into remove_old_pipeline_config
2 parents 469bdb8 + d46fd3d commit adba47f

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set NUMBA_VERSION = "==0.49.1" %}
1+
{% set NUMBA_VERSION = "==0.50.1" %}
22
{% set PANDAS_VERSION = "==0.25.3" %}
33
{% set PYARROW_VERSION = "==0.17.0" %}
44

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
numpy>=1.16
22
pandas==0.25.3
33
pyarrow==0.17.0
4-
numba==0.49.1
4+
numba==0.50.1
55
tbb
66
tbb-devel

sdc/utilities/utils.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,12 @@ def literal_bool_cast(context, builder, fromty, toty, val):
173173
lower_builtin(operator.ne, BooleanLiteral, BooleanLiteral)(numba.cpython.builtins.const_ne_impl)
174174

175175

176+
@lower_builtin(bool, BooleanLiteral)
177+
def bool_as_bool(context, builder, sig, args):
178+
[val] = args
179+
return val
180+
181+
176182
def get_constant(func_ir, var, default=NOT_CONSTANT):
177183
def_node = guard(get_definition, func_ir, var)
178184
if def_node is None:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def run(self):
375375
'numpy>=1.16',
376376
'pandas==0.25.3',
377377
'pyarrow==0.17.0',
378-
'numba>=0.49.1,<0.50.0',
378+
'numba>=0.50.1,<0.51',
379379
'tbb'
380380
],
381381
cmdclass=sdc_build_commands,

0 commit comments

Comments
 (0)