Skip to content

Commit

Permalink
🐛 修复发布之后不包含根目录文件的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Blushyes committed Jan 11, 2024
1 parent 14fb994 commit 112c89e
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install build
- name: Replace package name
run: |
mv src fast_script_utils
- name: Get the version tag
id: get_version
run: echo "version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[], # 依赖列表,格式是 ['package>=version']
install_requires=["requests", "lxml"], # 依赖列表,格式是 ['package>=version']
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 112c89e

Please sign in to comment.