Skip to content

Commit 0c35cb7

Browse files
committed
align .gitignore to tornado, go one step further
1 parent b38ace9 commit 0c35cb7

File tree

3 files changed

+20
-26
lines changed

3 files changed

+20
-26
lines changed

.github/workflows/build_wppm.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ permissions: {}
1818
env:
1919
python-version: '3.13'
2020
WINPYrequirements: './winpython/portable/cycle_2025_04/requir.wppmbuild.txt'
21+
PYTHONIOENCODING: utf-8
2122

2223
jobs:
2324
build_wheels:
@@ -69,7 +70,7 @@ jobs:
6970
- name: generate hashes wppm style
7071
shell: bash
7172
run: |
72-
DESTFILE = "./wheelhouse/hashes.md"
73+
DESTFILE="./wheelhouse/hashes.md"
7374
python -c "import sys;from winpython import hash; hash.print_hashes(sys.argv[1:])" wheelhouse/*.whl > $DESTFILE
7475
7576

.github/workflows/build_wppm_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: generate hashes wppm style
7070
shell: bash
7171
run: |
72-
DESTFILE = "./wheelhouse/hashes.md"
72+
DESTFILE="./wheelhouse/hashes.md"
7373
python -c "import sys;from winpython import hash; hash.print_hashes(sys.argv[1:])" wheelhouse/*.whl > $DESTFILE
7474
7575

.gitignore

Lines changed: 17 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,23 @@
1-
# Folders
2-
venv/
3-
.venv/
4-
.env
51

62
# Compiled python files
7-
*.py[oc]
8-
9-
10-
.exe
3+
*.exe
4+
*.pyc
5+
*.pyo
6+
*.so
7+
*.class
8+
*~
119
.settings
12-
.spyderproject
13-
.ropeproject
14-
.project
15-
.pydevproject
16-
.orig
17-
.DS_Store
10+
*.log
1811

19-
# ^dist/ is dead syntax
12+
build/
2013
/dist/
21-
14+
/bin/
2215
MANIFEST
23-
Thumbs.db
24-
*~
25-
*.swp
26-
27-
# Other build artifacts
28-
*.spec
29-
*.log
30-
htmlcov/
16+
/winpython.egg-info/
17+
.tox/
18+
.vagrant
19+
/.coverage
20+
/htmlcov/
21+
/env/
22+
.mypy_cache/
23+
.settings

0 commit comments

Comments
 (0)