Skip to content

Commit 3d89893

Browse files
committed
Makefile and .gitignore adjustments
1 parent 657b515 commit 3d89893

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/src/version/_version.py
2+
src/*.egg-info
3+
dist
4+
build
5+
out
6+
.coverage
7+
.*.history*
8+
*.tags.cache*

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ all: ci build version
55

66
dist d: all
77
scripts/check-version.sh
8+
# Win MSYS2 support: force config file location
89
twine upload $$(test -e ~/.pypirc && echo '--config-file ~/.pypirc') dist/*
910

1011
clean c:
11-
rm -rfv out dist build/bdist.* build/lib/cedarscript*
12+
rm -rfv out dist build/bdist.* src/*.egg-info
1213

1314
version v:
1415
git describe --tags ||:

0 commit comments

Comments
 (0)