WebashalarForML commited on
Commit
e2aea42
·
verified ·
1 Parent(s): 868d3da

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -5
Dockerfile CHANGED
@@ -37,13 +37,11 @@ RUN apt-get update && \
37
  ENV LLVM_CONFIG=/usr/bin/llvm-config-14
38
 
39
  # Explicitly install compatible versions of core audio/Numba stack
40
- # These versions are compatible with Python 3.9 and LLVM 14 (from clang-14)
41
- # Numba 0.56.0 works with llvmlite 0.39.0
42
- # Librosa 0.9.x generally works with resampy 0.3.x
43
  RUN pip install --no-cache-dir \
44
  numpy==1.22.4 \
45
- llvmlite==0.39.0 \
46
- numba==0.56.0 \
47
  resampy==0.3.1 \
48
  librosa==0.9.2
49
 
 
37
  ENV LLVM_CONFIG=/usr/bin/llvm-config-14
38
 
39
  # Explicitly install compatible versions of core audio/Numba stack
40
+ # Targeting a more stable Numba/llvmlite for Python 3.9 with resampy
 
 
41
  RUN pip install --no-cache-dir \
42
  numpy==1.22.4 \
43
+ llvmlite==0.36.0 \
44
+ numba==0.53.1 \
45
  resampy==0.3.1 \
46
  librosa==0.9.2
47