Skip to content

Commit 91536f7

Browse files
authored
Merge pull request #27 from EgorDudyrev/EgorDudyrev-patch-1
2 parents 9380cf7 + b906f63 commit 91536f7

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@ and the latest version of the package can be installed from GitHub repository:
2323
pip install caspailleur@git+https://github.com/EgorDudyrev/caspailleur
2424
```
2525

26+
> [!IMPORTANT]
27+
> The new major release of ``bitarray`` package renamed some of the package's functions, thus introducing errors in ``caspailleur``.
28+
> The updated release up ``caspailleur`` will be published around November 15.
29+
>
30+
> As for now, proceed to install the hotfix'ed version of the package from this GitHub repository.
31+
> You can also explicitly install the second last version of ``bitarray`` package without reinstalling the whole ``caspailleur``:
32+
> ```console
33+
> pip install --upgrade bitarray==2.9.3
34+
> ```
35+
2636
## Analysis example
2737
2838
### Glossary

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
]
2121
keywords = ["python", "fca", "itemset-mining"]
2222
dependencies = [
23-
'numpy>=1.20', 'scikit-mine>=1', 'bitarray>=2.5.1', 'tqdm', 'deprecation'
23+
'numpy>=1.20', 'scikit-mine>=1', 'bitarray>=2.5.1, <3', 'tqdm', 'deprecation'
2424
]
2525
requires-python = ">=3.8"
2626

0 commit comments

Comments
 (0)