python312Packages.sentence-transformers: 3.2.0 -> 3.2.1 (#350280)

This commit is contained in:
Sandro 2024-10-22 13:56:10 +02:00 committed by GitHub
commit fb87e4b74d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,14 +28,14 @@
buildPythonPackage rec {
pname = "sentence-transformers";
version = "3.2.0";
version = "3.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "UKPLab";
repo = "sentence-transformers";
rev = "refs/tags/v${version}";
hash = "sha256-T9y+usEOqz53Wv5gObD5o3gAlABHM3apoq/ySD5ynVg=";
hash = "sha256-5N5yObR3+3eV65ojFJFhzDbqtjNi/U2IhHlAaKttcVI=";
};
build-system = [ setuptools ];
@ -65,11 +65,16 @@ buildPythonPackage rec {
disabledTests = [
# Tests require network access
"test_cmnrl_same_grad"
"test_forward"
"test_initialization_with_embedding_dim"
"test_initialization_with_embedding_weights"
"test_LabelAccuracyEvaluator"
"test_model_card_reuse"
"test_paraphrase_mining"
"test_ParaphraseMiningEvaluator"
"test_save_and_load"
"test_simple_encode"
"test_tokenize"
"test_trainer"
"test_trainer_invalid_column_names"
"test_trainer_multi_dataset_errors"