Skip to content

Commit

Permalink
build: stop using finicky version setter
Browse files Browse the repository at this point in the history
  • Loading branch information
daylinmorgan committed May 28, 2023
1 parent 900dcef commit 08cf8ee
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 24 deletions.
14 changes: 1 addition & 13 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
default_install_hook_types:
- pre-commit
- post-commit
default_stages:
- commit
repos:
- repo: https://github.com/psf/black
rev: 23.3.0
Expand All @@ -16,11 +11,4 @@ repos:
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
- repo: local
hooks:
- id: set-version
language: script
name: sets __version__ in viv.py
entry: ./scripts/bump-dev.sh
stages: [post-commit]
always_run: true

10 changes: 0 additions & 10 deletions scripts/bump-dev.sh

This file was deleted.

2 changes: 1 addition & 1 deletion src/viv/viv.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
from urllib.error import HTTPError
from urllib.request import urlopen

__version__ = "23.5a1-13-gc1bf007"
__version__ = "23.5a1-dev"
STABLE = "23.5a1"


Expand Down

0 comments on commit 08cf8ee

Please sign in to comment.