From 09caeb97be556929cf717104d3cc6b9b078f9f39 Mon Sep 17 00:00:00 2001 From: Jan Freyberg Date: Sun, 11 Sep 2022 11:16:13 +0100 Subject: [PATCH] V0.6.0 (#76) * Version bump! * Update dockerfiles with new version * Update github badge --- README.md | 2 +- docs/examples/docker-compose/tensorflow.Dockerfile | 2 +- docs/examples/docker-compose/voila.Dockerfile | 2 +- docs/index.md | 6 +++--- src/superintendent/__init__.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 15ebdfb..83fca8f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Superintendent [![PyPI version](https://badge.fury.io/py/superintendent.svg)](https://badge.fury.io/py/superintendent) -![Unit tests and linting](https://github.com/janfreyberg/superintendent/workflows/Unit%20tests%20and%20linting/badge.svg) +[![Tests](https://github.com/janfreyberg/superintendent/actions/workflows/test.yml/badge.svg)](https://github.com/janfreyberg/superintendent/actions/workflows/test.yml) [![Documentation Status](https://readthedocs.org/projects/superintendent/badge/?version=latest)](https://superintendent.readthedocs.io/en/latest/?badge=latest) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/janfreyberg/superintendent/master) diff --git a/docs/examples/docker-compose/tensorflow.Dockerfile b/docs/examples/docker-compose/tensorflow.Dockerfile index 14a400b..ce6f181 100644 --- a/docs/examples/docker-compose/tensorflow.Dockerfile +++ b/docs/examples/docker-compose/tensorflow.Dockerfile @@ -1,7 +1,7 @@ FROM tensorflow/tensorflow:2.10.0 RUN pip install "ipyannotations>=0.5.1" -RUN pip install --pre superintendent==0.6.0.rc1 +RUN pip install "superintendent>=0.6.0" RUN mkdir /app WORKDIR /app diff --git a/docs/examples/docker-compose/voila.Dockerfile b/docs/examples/docker-compose/voila.Dockerfile index a1d5b8a..63d5713 100644 --- a/docs/examples/docker-compose/voila.Dockerfile +++ b/docs/examples/docker-compose/voila.Dockerfile @@ -8,7 +8,7 @@ WORKDIR /home/anaconda/app # install some extra dependencies RUN /opt/conda/bin/pip install voila>=0.1.2 RUN /opt/conda/bin/pip install ipyannotations -RUN /opt/conda/bin/pip install --pre superintendent==0.6.0.rc1 +RUN /opt/conda/bin/pip install "superintendent>=0.6.0" ENTRYPOINT ["/opt/conda/bin/voila", "--debug", "--VoilaConfiguration.extension_language_mapping={'.py':'python'}"] CMD ["app.ipynb"] diff --git a/docs/index.md b/docs/index.md index d210306..9d763f5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,12 +2,12 @@ _Practical data labelling and active learning in Jupyter notebooks._ -[![Build Status](https://travis-ci.org/janfreyberg/superintendent.svg?branch=master)](https://travis-ci.org/janfreyberg/superintendent) [![PyPI version](https://badge.fury.io/py/superintendent.svg)](https://badge.fury.io/py/superintendent) +[![Tests](https://github.com/janfreyberg/superintendent/actions/workflows/test.yml/badge.svg)](https://github.com/janfreyberg/superintendent/actions/workflows/test.yml) +[![Documentation Status](https://readthedocs.org/projects/superintendent/badge/?version=latest)](https://superintendent.readthedocs.io/en/latest/?badge=latest) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/janfreyberg/superintendent/master?filepath=examples.ipynb) +[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/janfreyberg/superintendent/master) [![Coverage Status](https://coveralls.io/repos/github/janfreyberg/superintendent/badge.svg)](https://coveralls.io/github/janfreyberg/superintendent) -![Python versions](https://img.shields.io/badge/python-3.5%2B-blue.svg) `superintendent` is a set of `ipywidget`-based interactive labelling tools for your data. It allows you to flexibly label all kinds of data. diff --git a/src/superintendent/__init__.py b/src/superintendent/__init__.py index 5ed0004..25a083e 100644 --- a/src/superintendent/__init__.py +++ b/src/superintendent/__init__.py @@ -17,7 +17,7 @@ __all__ = ["Superintendent"] -__version__ = "0.6.0.rc1" +__version__ = "0.6.0" class Superintendent(widgets.VBox):