Skip to content

Commit

Permalink
Fix for status() bug, version bump to 0.2.5 on PyPI.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdbloice committed Jul 10, 2019
1 parent f11dda3 commit 77979d9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Augmentor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@

__author__ = """Marcus D. Bloice"""
__email__ = 'marcus.bloice@medunigraz.at'
__version__ = '0.2.4'
__version__ = '0.2.5'

__all__ = ['Pipeline', 'DataFramePipeline', 'DataPipeline']
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Augmentor is an image augmentation library in Python for machine learning. It aims to be a standalone library that is platform and framework independent, which is more convenient, allows for finer grained control over augmentation, and implements the most real-world relevant augmentation techniques. It employs a stochastic approach using building blocks that allow for operations to be pieced together in a pipeline.

[![PyPI](https://img.shields.io/badge/Augmentor-v0.2.3-blue.svg?maxAge=2592000)](https://pypi.python.org/pypi/Augmentor)
[![PyPI](https://img.shields.io/badge/Augmentor-v0.2.5-blue.svg?maxAge=2592000)](https://pypi.python.org/pypi/Augmentor)
[![Supported Python Versions](https://img.shields.io/badge/python-2.7%20%7C%203.4%20%7C%203.5%20%7C%203.6-blue.svg)](https://pypi.python.org/pypi/Augmentor)
[![Documentation Status](https://readthedocs.org/projects/augmentor/badge/?version=master)](https://augmentor.readthedocs.io/en/master/?badge=master)
[![Build Status](https://travis-ci.org/mdbloice/Augmentor.svg?branch=master)](https://travis-ci.org/mdbloice/Augmentor)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.2.4'
version = u'0.2.5'
# The full version, including alpha/beta/rc tags.
release = u'0.2.4'
release = u'0.2.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name='Augmentor',
packages=['Augmentor'],
version='0.2.4',
version='0.2.5',
description='Image augmentation library for Machine Learning',
long_description='Image augmentation library for Machine Learning',
license='MIT',
Expand Down

0 comments on commit 77979d9

Please sign in to comment.