Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix setuptools_scm generating version 0.0.0 #33

Merged
merged 8 commits into from
Apr 29, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Check version isn't 0.0.0
hugovk committed Apr 28, 2020
commit 72a37b70b7edbfe369f8067259b14f30acfb6e6f
7 changes: 7 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -11,6 +11,8 @@ jobs:

steps:
- uses: actions/checkout@v2
- run: |
git fetch --prune --unshallow

- name: pip cache
uses: actions/cache@v1
@@ -40,3 +42,8 @@ jobs:

- name: Lint
run: tox -e lint

- name: Check version
run: |
python setup.py --version
[ `python setup.py --version` != "0.0.0" ]