Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
tornikeo committed Jul 9, 2024
2 parents fd88d9d + c0142c9 commit 8692725
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements.txt ]; then pip install -e .; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,4 @@ test.sh
*.jpg
*.jpeg
assets/perf.svg
assets/gpu_visuals.kra
61 changes: 31 additions & 30 deletions notebooks/figures/make_figures.ipynb

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ classifiers = [
python = ">=3.8,<3.13"
matchms = ">=0.24.0"
numba = "^0.57.1"
torch = "^2.2.0"
pooch = "^1.8.1"
tqdm = "^4.65.0"
joblib = "^1.3.2"
Expand Down
2 changes: 1 addition & 1 deletion tests/similarity/test_fingerprint_similarity.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_fingerprint_similarity_parallel_empty_fingerprint(test_method):
"test_method, expected_score, array_type, set_empty",
[
("cosine", 0.84515425, "numpy", np.nan),
("jaccard", 0.71428571, "sparse", np.nan),
("jaccard", 0.71428571, "numpy", np.nan),
("dice", 0.83333333, "numpy", 0),
],
)
Expand Down

0 comments on commit 8692725

Please sign in to comment.