From 722131f7b141dc4f70158214e120db955c9cb50d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maja=20Jab=C5=82o=C5=84ska?= <mjablonska@e-science.pl> Date: Wed, 31 Jan 2024 09:29:33 +0000 Subject: [PATCH] Remove urllib3 version requirement --- .gitlab-ci.yml | 1 - requirements.txt | 1 - setup.py | 3 +-- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 35419c5..73d9be6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,7 +26,6 @@ pypi_publish: only: - main stage: publish - when: on_success script: - pip install twine - python setup.py sdist bdist_wheel diff --git a/requirements.txt b/requirements.txt index c5ff21e..7b3898c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -20,4 +20,3 @@ pytest~=7.2.2 transformers~=4.27.3 sacremoses~=0.0.53 spacy~=3.3.1 -urllib3==1.26.7 \ No newline at end of file diff --git a/setup.py b/setup.py index 7151dad..dc74f93 100644 --- a/setup.py +++ b/setup.py @@ -25,8 +25,7 @@ REQUIREMENTS = [ "pytest~=7.2.2", "transformers~=4.27.3", "sacremoses~=0.0.53", - "spacy~=3.3.1", - "urllib3==1.26.7" + "spacy~=3.3.1" ] setup( -- GitLab