Skip to content

Commit

Permalink
building
Browse files Browse the repository at this point in the history
  • Loading branch information
fdobad committed Jan 2, 2025
1 parent 2a9ce65 commit e639535
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@
```bash
# clean (-n is dry-run, remove to delete)
git clean -dfX -n
git clean -dfX

# tags check
git tag

# tag create locally & upload
git tag -a v0.3.1 -m 'agglomerative clustering outputs polygon and sieves' && git push origin v0.3.1
git tag -a v0.3.4 -m 'multi objective knapsack mvp + cell2fire statistics mean fix without non-fire scenarios' && git push origin v0.3.4

# delete tag locally & upstream
git tag --delete v0.3.1 && git push --delete origin v0.3.1
git tag --delete v0.3.4 && git push --delete origin v0.3.4

# view calculated version to check is not dirty
python -m setuptools_scm
Expand Down

0 comments on commit e639535

Please sign in to comment.