Skip to content

Commit 5618a1f

Browse files
update readme with correct package name (#4)
1 parent d06eb55 commit 5618a1f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ Numba’s function-level caching (`@jit(cache=True)`) is not concurrency-safe by
2222
## Installation
2323

2424
```bash
25-
pip install numba-locking-cache
25+
pip install numba-lock-cache
2626
```
2727

2828
## How to use it
2929

3030
Just import the patch Numba in your application:
3131

3232
```python
33-
import numba_locking_cache
33+
import numba_cache_lock
3434

35-
numba_locking_cache.patch_numba_cache()
35+
numba_cache_lock.patch_numba_cache()
3636

3737
from numba import jit
3838

src/numba_cache_lock/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
)
1111

1212
__all__ = [
13-
"monkey_patch_caching",
13+
"patch_numba_cache",
1414
]
1515

1616

0 commit comments

Comments
 (0)