Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/e2e_transferqueue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
run: |
pip3 install --no-deps -e .[test,gpu]
pip3 install transformers==$TRANSFORMERS_VERSION
pip3 install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple TransferQueue==0.1.2.dev0
pip3 install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple TransferQueue==0.1.3.dev5
- name: Prepare GSM8K dataset
run: |
python3 examples/data_preprocess/gsm8k.py --local_dataset_path ${HOME}/models/hf_data/gsm8k
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
run: |
pip3 install --no-deps -e .[test,gpu]
pip3 install transformers==$TRANSFORMERS_VERSION
pip3 install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple TransferQueue==0.1.2.dev0
pip3 install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple TransferQueue==0.1.3.dev5
- name: Prepare GSM8K dataset
run: |
python3 examples/data_preprocess/gsm8k.py --local_dataset_path ${HOME}/models/hf_data/gsm8k
Expand Down
2 changes: 1 addition & 1 deletion requirements_transferqueue.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# requirements.txt records the full set of dependencies for development
TransferQueue==0.1.2.dev0

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's no need a separate requirements_transferqueue.txt since we already set it in setup.py.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

TransferQueue==0.1.3.dev5
Comment thread
0oshowero0 marked this conversation as resolved.
Outdated
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
]
TRL_REQUIRES = ["trl<=0.9.6"]
MCORE_REQUIRES = ["mbridge"]
TRANSFERQUEUE_REQUIRES = ["TransferQueue==0.1.2.dev0"]
TRANSFERQUEUE_REQUIRES = ["TransferQueue==0.1.3.dev5"]
Comment thread
0oshowero0 marked this conversation as resolved.
Outdated

extras_require = {
"test": TEST_REQUIRES,
Expand Down
Loading