From 3ea41770d3d5b02d616a3c45fb087befcf7da022 Mon Sep 17 00:00:00 2001 From: Stefan Heng Date: Mon, 22 May 2023 11:25:46 -0400 Subject: [PATCH] Chore: publish package; Fix: hf hub required version --- requirements.txt | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5742392..d9dd30c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -32,7 +32,7 @@ gdown==4.5.4 google-auth==2.15.0 google-auth-oauthlib==0.4.6 grpcio==1.51.1 -huggingface-hub==0.14.1 +huggingface-hub==0.4.0 icecream==2.1.3 idna==3.4 importlib-metadata==5.1.0 diff --git a/setup.py b/setup.py index 4a0d23f..79efdd5 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION = '0.1.2' +VERSION = '0.2.1' DESCRIPTION = """ code and data for the Findings of ACL'23 paper Label Agnostic Pre-training for Zero-shot Text Classification by Christopher Clarke, Yuzhao Heng, Yiping Kang, Krisztian Flautner, Lingjia Tang and Jason Mars @@ -15,14 +15,14 @@ description=DESCRIPTION, long_description=DESCRIPTION, url='https://github.com/ChrisIsKing/zero-shot-text-classification', - download_url='https://github.com/ChrisIsKing/zero-shot-text-classification/archive/refs/tags/v0.1.2.tar.gz', + download_url='https://github.com/ChrisIsKing/zero-shot-text-classification/archive/refs/tags/v0.2.1.tar.gz', packages=find_packages(), include_package_data=True, install_requires=[ 'gdown==4.5.4', 'openai==0.25.0', 'requests==2.28.1', 'tenacity==8.1.0', 'spacy==3.2.2', 'nltk==3.7', 'scikit-learn==1.1.3', 'torch==1.12.0', 'sentence-transformers==2.2.0', 'transformers==4.16.2', - 'datasets==1.18.3', + 'datasets==1.18.3', 'huggingface-hub==0.4.0', 'stefutils==0.22.2' ], keywords=['python', 'nlp', 'machine-learning', 'deep-learning', 'text-classification', 'zero-shot-classification'],