From 9bc675b3b6e6faddb90619a0f1fdc43cce943190 Mon Sep 17 00:00:00 2001 From: Cyril Vallez Date: Fri, 11 Jul 2025 15:34:01 +0200 Subject: [PATCH] Fix link for testpypi (#39360) fix link --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 349257ab28..11e81ec4ee 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ To create the package for pypi. twine upload dist/* -r testpypi --repository-url=https://test.pypi.org/legacy/ Check that you can install it in a virtualenv by running: - pip install -i https://testpypi.python.org/pypi transformers + pip install -i https://test.pypi.org/simple/ transformers Check you can run the following commands: python -c "from transformers import pipeline; classifier = pipeline('text-classification'); print(classifier('What a nice release'))"