Skip to content

Commit

Permalink
0.2.5
Browse files Browse the repository at this point in the history
1. 调整了部分名单无法导入的问题
  • Loading branch information
syhanjin committed Sep 25, 2022
1 parent 3d056c7 commit 51b6323
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ __pycache__
.idea/
build/
dist/
readme.txt
html/lists/
2 changes: 1 addition & 1 deletion builder.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off

conda activate lottery&&PyInstaller -D console.spec&&PyInstaller -D main.spec&&mkdir .\dist\lottery&&xcopy ".\dist\console\*.*" ".\dist\lottery" /e /y&&xcopy ".\dist\main\*.*" ".\dist\lottery" /e /y&&rd __pycache__ build dist\console dist\main /q/s
conda activate lottery&&PyInstaller -D console.spec&&PyInstaller -D main.spec&&mkdir .\dist\lottery&&xcopy ".\dist\console\*.*" ".\dist\lottery" /e /y&&xcopy ".\dist\main\*.*" ".\dist\lottery" /e /y&&rd __pycache__ build /q/s
3 changes: 0 additions & 3 deletions html/lists/list.js

This file was deleted.

1 change: 0 additions & 1 deletion utils/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def load(fp: str):
# 读取名单
df = read_excel(fp)
# 提取学号后两位数字
df['学号'] = df['学号'].str[-2:]
# 构建名单文件夹
if not os.path.exists(listroot):
os.makedirs(listroot)
Expand Down

0 comments on commit 51b6323

Please sign in to comment.