Skip to content

Commit

Permalink
Update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislas0 committed Nov 16, 2022
1 parent cfcbc66 commit 601b3aa
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
18 changes: 10 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
fire==0.4.0
ipython==8.4.0
numpy==1.22.0
pandas==1.3.5
pyzmq==23.2.1
regex==2022.3.15
setuptools==58.0.4
tqdm==4.63.0
fire>=0.4.0
ipython>=8.4.0
numpy>=1.22.0
pandas>=1.3.5
pyzmq>=23.2.1
regex>=2022.3.15
setuptools>=58.0.4
transformers>=4.22.0
pytorch>=1.10.0
tqdm>=4.63.0
20 changes: 11 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@
name="codegeex",
py_modules=["codegeex"],
version="1.0",
description="CodeGeeX: A Multilingual Code Generative Model.",
description="CodeGeeX: A Open Multilingual Code Generation Model.",
author="Qinkai Zheng",
packages=find_packages(),
install_requires=[
"fire==0.4.0",
"ipython==8.4.0",
"numpy==1.22.0",
"pandas==1.3.5",
"pyzmq==23.2.1",
"regex==2022.3.15",
"setuptools==58.0.4",
"tqdm==4.63.0",
"fire>=0.4.0",
"ipython>=8.4.0",
"numpy>=1.22.0",
"pandas>=1.3.5",
"pyzmq>=23.2.1",
"regex>=2022.3.15",
"setuptools>=58.0.4",
"transformers>=4.22.0",
"pytorch>=1.10.0",
"tqdm>=4.63.0",
],
entry_points={}
)

0 comments on commit 601b3aa

Please sign in to comment.