Skip to content

Commit b98e1eb

Browse files
committed
Merge branch 'master' of github.com:AIM-Harvard/foundation-cancer-image-biomarker
2 parents 257efa4 + 378ac57 commit b98e1eb

File tree

6 files changed

+587
-150
lines changed

6 files changed

+587
-150
lines changed

.github/workflows/publish.yml

Lines changed: 25 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -8,36 +8,33 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
12-
- name: Set up Python
13-
uses: actions/setup-python@v2.2.2
14-
with:
15-
python-version: 3.9
11+
- uses: actions/checkout@v2
12+
- name: Set up Python
13+
uses: actions/setup-python@v2.2.2
14+
with:
15+
python-version: 3.9
1616

17-
- name: Install poetry
18-
run: make setup
17+
- name: Install poetry
18+
run: make setup
1919

20-
- name: Install poeblix for version freezing
21-
run: poetry self add poeblix@latest
22-
23-
- name: Bump version
24-
run: |
25-
poetry version prerelease
20+
- name: Bump version
21+
run: |
22+
poetry version prerelease
2623
27-
- name: Commit changes
28-
run: |
29-
git config --local user.email "action@github.com"
30-
git config --local user.name "GitHub Action"
31-
git add .
32-
git commit -m "Bump version" || echo "No changes to commit"
24+
- name: Commit changes
25+
run: |
26+
git config --local user.email "action@github.com"
27+
git config --local user.name "GitHub Action"
28+
git add .
29+
git commit -m "Bump version" || echo "No changes to commit"
3330
34-
- name: Push changes
35-
run: git push
31+
- name: Push changes
32+
run: git push
3633

37-
- name: Build with lockfile versions
38-
run: poetry blixbuild --only-lock
39-
40-
- name: Publish distribution 📦 to PyPI
41-
uses: pypa/gh-action-pypi-publish@release/v1
42-
with:
43-
password: ${{ secrets.PYPI_TOKEN }}
34+
- name: Build and publish to pypi
35+
uses: JRubics/poetry-publish@v1.16
36+
with:
37+
python_version: 3.9
38+
pypi_token: ${{ secrets.PYPI_TOKEN }}
39+
allow_poetry_pre_release: "yes"
40+
ignore_dev_requirements: "yes"

fmcib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.1a5"
1+
__version__ = "1.0.1a6"

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ plugins:
3636
- mkdocstrings:
3737
handlers:
3838
python:
39-
docstring_style: google
39+
# docstring_style: google
4040
options:
4141
# Removed the default filter that excludes private members (that is, members whose names start with a single underscore).
4242
filters: null

0 commit comments

Comments
 (0)