Skip to content

Commit

Permalink
version to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
prappleizer committed Feb 2, 2024
1 parent 8da78cc commit 1dd152b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# maskfill

[![Documentation Status](https://readthedocs.org/projects/maskfill/badge/?version=latest)](https://maskfill.readthedocs.io/en/latest/?badge=latest)


Fill in masked values in an image.

The method description can be found in van Dokkum & Pasha (2024) (PASP).
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
author = 'Pieter van Dokkum & Imad Pasha'

# The full version, including alpha/beta/rc tags
release = '1.1.2'
release = '1.1.1'
html_theme = "sphinx_rtd_theme"
## myst_nb default settings

Expand Down
2 changes: 1 addition & 1 deletion maskfill/maskfill.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def cli():



__version__ = "1.1.2"
__version__ = "1.1.1"
if __name__ == "__main__":
cli()

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "maskfill"
version = "1.1.2"
version = "1.1.1"
description = "A Python package for image mask filling"
authors = [
{ name = "Pieter van Dokkum", email = "[email protected]"},
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

setup(
name='maskfill',
version='1.1.2',
version='1.1.1',
author='Pieter van Dokkum & Imad Pasha',
author_email='[email protected]',
description='A Python package for image mask filling',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/dokkum/maskfill',
download_url = 'https://github.com/dokkum/maskfill/archive/refs/tags/v1.1.2.tar.gz',
download_url = 'https://github.com/dokkum/maskfill/archive/refs/tags/v1.1.1.tar.gz',
packages=find_packages(),
install_requires=[
'numpy',
Expand Down

0 comments on commit 1dd152b

Please sign in to comment.