Skip to content

Commit 70a726d

Browse files
committed
Fix packages versions and bump to 0.0.3
1 parent 9020f67 commit 70a726d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

boolean_question/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"""
2020

2121
__author__ = "Saad Mairaj"
22-
__version__ = "0.0.2"
22+
__version__ = "0.0.3"
2323

2424
from boolean_question.boolq import BoolQ

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

33
__author__ = "Saad Mairaj"
4-
__version__ = "0.0.2"
4+
__version__ = "0.0.3"
55

66

77
def get_long_description(path):
@@ -23,12 +23,12 @@ def get_long_description(path):
2323
license='Apache',
2424
python_requires='>=3',
2525
install_requires=[
26-
'gdown',
27-
'torch',
28-
'torchvision',
29-
'transformers',
30-
'pandas',
31-
'numpy',
26+
'gdown==3.13.0',
27+
'torch==1.9.0',
28+
'torchvision==0.10.0',
29+
'transformers==2.5.1',
30+
'pandas==1.3.1',
31+
'numpy==1.21.1',
3232
],
3333
keywords=[
3434
'question-answer',

0 commit comments

Comments
 (0)