Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Benjijamorris patch 7 #393

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[bumpversion]
current_version = 0.1.8
current_version = 0.2.0

tag = True
commit = True

Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch all history for all branches and tags
# with:
# fetch-depth: 0 # Fetch all history for all branches and tags

- name: Setup PDM
uses: pdm-project/setup-pdm@v2
Expand All @@ -41,8 +41,12 @@ jobs:
- name: Apply bumpversion minor
run: |
git checkout -b admin/version-bump
bumpversion minor
git push origin admin/version-bump
bumpversion minor --verbose

- name: Create new branch
uses: stefanzweifel/git-auto-commit-action@v5
branch: admin/version-bump
create_branch: true

- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,11 @@ jobs:
with:
python-version: "3.10"

- name: Install bumpversion
run: pip install bumpversion

- name: Configure Git
run: |
git config user.name github-actions
git config user.email [email protected]

- name: Apply bumpversion minor
run: |
bumpversion minor
git push
git push --tags

- name: Build package
run: pdm build

Expand Down
2 changes: 2 additions & 0 deletions cyto_dl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

__version__ = "0.1.8"



# silence bio packages warnings
import logging
import warnings
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ build-backend = "pdm.pep517.api"

[project]
name = "cyto-dl"
version = "0.1.8"

version = "0.2.0"

description = """\
Collection of representation learning models, techniques, callbacks, utils, \
used to create latent variable models of cell shape, morphology and \
Expand Down Expand Up @@ -72,7 +74,7 @@ torchserve = [
]
pcloud = [
"pyntcloud>=0.3.1",
"aicsshparam>=0.1.7",
"aicsshparam>=0.2.0",
"torch-geometric>=2.3.1",
"point-cloud-utils>=0.29.6",
"geomloss>=0.2.6",
Expand Down
Loading