Skip to content

Commit ee3030c

Browse files
authored
Merge pull request #56 from GauravPandeyLab/dev-jamie
add automatic versioning
2 parents 262308b + ee13228 commit ee3030c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/publish_test_pypi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
steps:
99
- name: Check out the repository
1010
uses: actions/checkout@v3
11+
with:
12+
fetch-depth: 0
1113

1214
- name: Set up Python
1315
uses: actions/setup-python@v3

pyproject.toml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[build-system]
2-
requires = ["poetry-core"]
3-
build-backend = "poetry.core.masonry.api"
2+
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
3+
build-backend = "poetry_dynamic_versioning.backend"
44

55
[tool.poetry]
66
name = "ensemble-integration"
7-
version = "0.1.5"
7+
version = "0.0.0"
88
readme = "README.rst"
99
description = "Ensemble Integration: a customizable pipeline for generating multi-modal, heterogeneous ensembles"
1010
authors = ["Jamie Bennett", "Yan Chak (Richard) Li", "Aviad Susman", "Gaurav Pandey"]
@@ -64,4 +64,9 @@ numpydoc = "1.5.0"
6464
addopts = "--cov=eipy --cov-report xml --cov-append"
6565
testpaths = [
6666
"tests"
67-
]
67+
]
68+
69+
[tool.poetry-dynamic-versioning]
70+
enable = true
71+
vcs = "git"
72+
style = "semver"

0 commit comments

Comments
 (0)