We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 657b515 commit 3d89893Copy full SHA for 3d89893
.gitignore
@@ -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
@@ -5,10 +5,11 @@ all: ci build version
dist d: all
scripts/check-version.sh
+ # Win MSYS2 support: force config file location
9
twine upload $$(test -e ~/.pypirc && echo '--config-file ~/.pypirc') dist/*
10
11
clean c:
- rm -rfv out dist build/bdist.* build/lib/cedarscript*
12
+ rm -rfv out dist build/bdist.* src/*.egg-info
13
14
version v:
15
git describe --tags ||:
0 commit comments