Skip to content

Commit

Permalink
V0.6.0 (#76)
Browse files Browse the repository at this point in the history
* Version bump!

* Update dockerfiles with new version

* Update github badge
  • Loading branch information
janfreyberg committed Sep 11, 2022
1 parent 56f3965 commit 09caeb9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/docker-compose/tensorflow.Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/docker-compose/voila.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/superintendent/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


__all__ = ["Superintendent"]
__version__ = "0.6.0.rc1"
__version__ = "0.6.0"


class Superintendent(widgets.VBox):
Expand Down

0 comments on commit 09caeb9

Please sign in to comment.