Spaces:
Running
Running
File size: 469 Bytes
09bae93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# -*- coding: utf-8 -*-
# file: release.sh.py
# time: 10:58 2023/2/3
# author: yangheng <hy345@exeter.ac.uk>
# github: https://github.com/yangheng95
# huggingface: https://huggingface.co/yangheng
# google scholar: https://scholar.google.com/citations?user=NPq5a_0AAAAJ&hl=en
# Copyright (C) 2021. All Rights Reserved.
message=$1
python -m pip install --upgrade pip
pip install twine
pip install wheel
python zip_datasets.py
git add .
git commit -m message
git push
|