Skip to content

Commit

Permalink
Increase version number to 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
aleju committed Oct 24, 2017
1 parent 27785f4 commit 60229db
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -87,7 +87,7 @@ Required packages:
OpenCV has to be manually installed. The other package should auto-install themselves. OpenCV has to be manually installed. The other package should auto-install themselves.


To install, simply use `sudo pip install imgaug`. That version might be outdated though. To always get the newest version directly from github use `sudo pip install git+https://github.com/aleju/imgaug`. To install, simply use `sudo pip install imgaug`. That version might be outdated though. To always get the newest version directly from github use `sudo pip install git+https://github.com/aleju/imgaug`.
Alternatively, you can download the repository via `git clone https://github.com/aleju/imgaug` and install by using `python setup.py sdist && sudo pip install dist/imgaug-0.2.4.tar.gz`. Alternatively, you can download the repository via `git clone https://github.com/aleju/imgaug` and install by using `python setup.py sdist && sudo pip install dist/imgaug-0.2.5.tar.gz`.


To deinstall the library, just execute `sudo pip uninstall imgaug`. To deinstall the library, just execute `sudo pip uninstall imgaug`.


Expand Down
7 changes: 2 additions & 5 deletions docs/conf.py
Expand Up @@ -79,9 +79,9 @@ def __getattr__(cls, name):
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = u'0.2.4' version = u'0.2.5'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
Expand Down Expand Up @@ -192,6 +192,3 @@ def __getattr__(cls, name):
author, 'imgaug', 'One line description of project.', author, 'imgaug', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]



2 changes: 1 addition & 1 deletion docs/source/installation.rst
Expand Up @@ -29,7 +29,7 @@ Alternatively, you can install the latest version which was added to pypi via


In rare cases, one might prefer to install from the locally cloned repository. In rare cases, one might prefer to install from the locally cloned repository.
This is possible using ``python setup.py sdist && sudo pip install dist/imgaug-VERSION.tar.gz``, This is possible using ``python setup.py sdist && sudo pip install dist/imgaug-VERSION.tar.gz``,
where `VERSION` must be replaced by the current version of the library (e.g. ``imgaug-0.2.4.tar.gz``). where `VERSION` must be replaced by the current version of the library (e.g. ``imgaug-0.2.5.tar.gz``).
The current version can be derived from `setup.py`'s content. The current version can be derived from `setup.py`'s content.


To deinstall the library use ``pip uninstall imgaug``. To deinstall the library use ``pip uninstall imgaug``.
2 changes: 1 addition & 1 deletion imgaug/__init__.py
Expand Up @@ -3,4 +3,4 @@
from . import augmenters from . import augmenters
from . import parameters from . import parameters


__version__ = '0.2.4' __version__ = '0.2.5'
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -16,11 +16,11 @@


setup( setup(
name="imgaug", name="imgaug",
version="0.2.4", version="0.2.5",
author="Alexander Jung", author="Alexander Jung",
author_email="kontakt@ajung.name", author_email="kontakt@ajung.name",
url="https://github.com/aleju/imgaug", url="https://github.com/aleju/imgaug",
download_url="https://github.com/aleju/imgaug/archive/0.2.4.tar.gz", download_url="https://github.com/aleju/imgaug/archive/0.2.5.tar.gz",
install_requires=["scipy", "scikit-image>=0.11.0", "numpy>=1.7.0", "six"], install_requires=["scipy", "scikit-image>=0.11.0", "numpy>=1.7.0", "six"],
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
Expand Down

0 comments on commit 60229db

Please sign in to comment.