Skip to content

Commit

Permalink
Prepare 0.12.10 release (#726)
Browse files Browse the repository at this point in the history
* Bump deepcell-tracking patch in deps.

* Update release job.

* Bump version number.

* Explicit role to silence sphinx complaint.

* Bump Python version for doc testing workflow.

* Add .git-blame-ignore-revs.
  • Loading branch information
rossbar authored Aug 8, 2024
1 parent 1634b5f commit eb3d619
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1634b5fbe939e93f463e0385511f91170655839d
8 changes: 4 additions & 4 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: "3.10"

- name: Build a source distribution
run: python setup.py sdist

- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: "3.10"

- name: Build a source distribution
run: |
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}
2 changes: 1 addition & 1 deletion .github/workflows/test-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.10"

- name: Install Dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion deepcell/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
__title__ = 'DeepCell'
__description__ = 'Deep learning for single cell image segmentation'
__url__ = 'https://github.com/vanvalenlab/deepcell-tf'
__version__ = '0.12.9'
__version__ = '0.12.10'
__download_url__ = f'{__url__}/tarball/{__version__}'
__author__ = 'The Van Valen Lab'
__author_email__ = '[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion deepcell/applications/cell_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def from_version(cls, version='1.1'):
1.0: Original Caliban model released with the September 2023 preprint
Args:
version (str, optional): Defaults to '1.1'.
version (:obj:`str`, optional): Defaults to '1.1'.
"""
if version not in CONFIGS:
raise ValueError(f'Selected version {version} is not available. '
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
author = 'Van Valen Lab at Caltech'

# The short X.Y.Z version - overriden by rtd
version = release = '0.12.9'
version = release = '0.12.10'

import subprocess
try:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tensorflow_addons~=0.16.1
spektral~=1.0.4
jupyterlab
matplotlib
deepcell-tracking~=0.6.1
deepcell-tracking~=0.6.5
deepcell-toolbox>=0.12.1

# Required for keras.utils.plot_model
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
'jupyter>=1.0.0,<2',
'matplotlib',
'opencv-python-headless<5',
'deepcell-tracking~=0.6.1',
'deepcell-tracking~=0.6.5',
'deepcell-toolbox>=0.12.1'
],
extras_require={
Expand Down

0 comments on commit eb3d619

Please sign in to comment.