From a29d0253d2baf316797376b6d51f492f2469d2ea Mon Sep 17 00:00:00 2001 From: kc611 Date: Tue, 1 Aug 2023 17:54:18 +0530 Subject: [PATCH] Removed adddtional windows 32 references --- buildscripts/condarecipe.local/meta.yaml | 11 +++++------ docs/source/reference/envvars.rst | 2 +- docs/source/user/5minguide.rst | 2 +- docs/source/user/installing.rst | 2 +- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/buildscripts/condarecipe.local/meta.yaml b/buildscripts/condarecipe.local/meta.yaml index ff152a932cb..b367c4e40e1 100644 --- a/buildscripts/condarecipe.local/meta.yaml +++ b/buildscripts/condarecipe.local/meta.yaml @@ -18,7 +18,7 @@ build: - lib/libiomp5.dylib # [osx] ignore_run_exports: # tbb-devel triggers hard dependency on tbb, this is not the case. - - tbb # [not (aarch64 or ppc64le or win32)] + - tbb # [not (aarch64 or ppc64le)] requirements: # build and run dependencies are duplicated to avoid setuptools issues @@ -36,9 +36,8 @@ requirements: # On channel https://anaconda.org/numba/ - llvmlite >=0.41.0dev0,<0.41 # TBB devel version is to match TBB libs. - # NOTE: ppc64le and aarch64 are pending testing so excluded for now, win32 - # is not a supported parallel target. - - tbb-devel >=2021.6 # [not (aarch64 or ppc64le or win32)] + # NOTE: ppc64le and aarch64 are pending testing so excluded for now. + - tbb-devel >=2021.6 # [not (aarch64 or ppc64le)] run: - python >=3.8 # NumPy 1.22.0, 1.22.1, 1.22.2 are all broken for ufuncs, see #7756 @@ -48,7 +47,7 @@ requirements: - llvmlite >=0.41.0dev0,<0.41 run_constrained: # If TBB is present it must be at least version 2021.6 - - tbb >=2021.6 # [not (aarch64 or ppc64le or win32)] + - tbb >=2021.6 # [not (aarch64 or ppc64le)] # avoid confusion from openblas bugs - libopenblas !=0.3.6 # [x86_64] # 0.3.17 buggy on M1 silicon @@ -73,7 +72,7 @@ test: - ipython # [not aarch64] # for pycc - setuptools - - tbb >=2021.6 # [not (aarch64 or ppc64le or win32)] + - tbb >=2021.6 # [not (aarch64 or ppc64le)] - llvm-openmp # [osx] # This is for driving gdb tests - pexpect # [linux64] diff --git a/docs/source/reference/envvars.rst b/docs/source/reference/envvars.rst index 53aecd12848..cd535f0be83 100644 --- a/docs/source/reference/envvars.rst +++ b/docs/source/reference/envvars.rst @@ -307,7 +307,7 @@ Compilation options If set to non-zero, enable LLVM loop vectorization. - *Default value:* 1 (except on 32-bit Windows) + *Default value:* 1 .. envvar:: NUMBA_SLP_VECTORIZE diff --git a/docs/source/user/5minguide.rst b/docs/source/user/5minguide.rst index c3c1479bacd..e1981be0df7 100644 --- a/docs/source/user/5minguide.rst +++ b/docs/source/user/5minguide.rst @@ -12,7 +12,7 @@ part of your code can subsequently run at native machine code speed! Out of the box Numba works with the following: -* OS: Windows (32 and 64 bit), OSX, Linux (64 bit). Unofficial support on +* OS: Windows (64 bit), OSX, Linux (64 bit). Unofficial support on \*BSD. * Architecture: x86, x86_64, ppc64le, armv8l (aarch64), M1/Arm64. * GPUs: Nvidia CUDA. diff --git a/docs/source/user/installing.rst b/docs/source/user/installing.rst index 6ae5279cefb..c26e13bac9a 100644 --- a/docs/source/user/installing.rst +++ b/docs/source/user/installing.rst @@ -12,7 +12,7 @@ Our supported platforms are: * Linux x86_64 * Linux ppcle64 (POWER8, POWER9) -* Windows 7 and later (32-bit and 64-bit) +* Windows 10 and later (64-bit) * OS X 10.9 and later (64-bit and unofficial support on M1/Arm64) * \*BSD (unofficial support only) * NVIDIA GPUs of compute capability 5.0 and later