# 设置默认源
poetry source add --default tuna https://pypi.tuna.tsinghua.edu.cn/simple/
poetry source remove tuna
# 设置私有源# Consider changing the priority to one of the non-deprecated values: 'default', 'primary', 'supplemental', 'explicit'
poetry source add --priority=PRIORITY [name] [url]
poetry source add --priority supplemental aliyun https://mirrors.aliyun.com/pypi/simple
poetry source remove aliyun
dev
# show help
$ make help# check env
$ make env
# install dependencies
$ make dep
# run ci pipeline
$ make ci
# fix code style
$ make style
# check style
$ make check