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 a27538b commit 6dd4cc0Copy full SHA for 6dd4cc0
.github/workflows/pythonpackage.yml
@@ -38,7 +38,7 @@ jobs:
38
if [[ "$GITHUB_REF" == refs/tags/* ]]; then
39
TAG=${GITHUB_REF##*/}
40
fi
41
- THISVERSION=$( python get_version.py )
+ THISVERSION=$( python setup.py --version )
42
THISVERSION=${TAG:-$THISVERSION}
43
echo "Expected VERSION: \"${THISVERSION}\""
44
echo "THISVERSION=${THISVERSION}" >> ${GITHUB_ENV}
MANIFEST.in
@@ -1,5 +1,7 @@
1
recursive-exclude .circleci/ *
2
+recursive-exclude .github/ *
3
recursive-exclude docker/ *
4
recursive-exclude docs/ *
5
recursive-exclude joss/ *
6
+recursive-exclude nitransforms/tests *
7
exclude .codecov.yml .coveragerc .gitignore .pep8speaks.yml .travis.yml Dockerfile
0 commit comments