From 093fd8aac03ff8b2031ab2f2e89f2aa625228931 Mon Sep 17 00:00:00 2001 From: Maja Jablonska <majajjablonska@gmail.com> Date: Wed, 14 Feb 2024 08:25:37 +1100 Subject: [PATCH] Update lambo requirements --- requirements.txt | 2 ++ setup.py | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 3388ada..ba612dd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,6 +6,8 @@ conllutils~=1.1.4 dill~=0.3.6 importlib-resources~=5.12.0 h5py~=3.9.0 +-i https://pypi.clarin-pl.eu/ +lambo==2.1.0 overrides~=7.3.1 torch~=2.0.0 torchtext~=0.15.1 diff --git a/setup.py b/setup.py index d5ab42c..5140f5d 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import subprocess from setuptools import find_packages, setup -subprocess.call(['pip', 'install', '--no-deps', '--ignore-requires-python', 'git+https://gitlab.clarin-pl.eu/syntactic-tools/lambo.git#egg=lambo']) +subprocess.call(['pip', 'install', '--no-deps', '--ignore-requires-python', '-i https://pypi.clarin-pl.eu/', 'lambo']) REQUIREMENTS = [ "absl-py~=1.4.0", @@ -29,7 +29,7 @@ REQUIREMENTS = [ ] setup( - name="combo", + name="combo-nlp", version="3.1.1", author="Maja Jablonska", author_email="maja.jablonska@ipipan.waw.pl", @@ -53,4 +53,4 @@ setup( 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', ] -) \ No newline at end of file +) -- GitLab