Skip to content

Commit

Permalink
Fix package versioning (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
covracer authored Jul 13, 2024
1 parent e631b6c commit 4a9745f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion includes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ yucount() {
git fetch --tags
local count
count=$(git tag --list "$yu*" | gsed "s/$yu//" | sort -r | head -1)
date -u "+v%Y.%U.${count:-0}"
date -u "+v%Y.%U.$((${count:-0} + 1))"
}

if [[ $* ]]; then
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ convention = 'pep257'

[tool.setuptools.packages]
find = { namespaces = false }

[tool.setuptools_scm]

0 comments on commit 4a9745f

Please sign in to comment.