From 881505d058626d219a01b68d707b3e06b8d64ae2 Mon Sep 17 00:00:00 2001 From: Junpei Kawamoto Date: Thu, 8 Dec 2016 19:41:32 -0500 Subject: [PATCH] Relax requirements. --- README.md | 2 +- docs/source/conf.py | 2 +- requirements.txt | 10 +++++----- setup.py | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 73fa4ea..008d401 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://travis-ci.org/rgmining/ria.svg?branch=master)](https://travis-ci.org/rgmining/ria) [![wercker status](https://app.wercker.com/status/7751cf9d910a68b30ab010c5c341eb59/s/master "wercker status")](https://app.wercker.com/project/byKey/7751cf9d910a68b30ab010c5c341eb59) [![Code Climate](https://codeclimate.com/github/rgmining/ria/badges/gpa.svg)](https://codeclimate.com/github/rgmining/ria) -[![Release](https://img.shields.io/badge/release-0.9.0-brightgreen.svg)](https://github.com/rgmining/ria/releases/tag/v0.9.0) +[![Release](https://img.shields.io/badge/release-0.9.1-brightgreen.svg)](https://github.com/rgmining/ria/releases/tag/v0.9.1) This package provides 4 algorithms for review graph mining project. diff --git a/docs/source/conf.py b/docs/source/conf.py index c0305fe..ed396cc 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -71,7 +71,7 @@ # The short X.Y version. version = u'0.9' # The full version, including alpha/beta/rc tags. -release = u'0.9.0' +release = u'0.9.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/requirements.txt b/requirements.txt index 93793a1..dee53d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,8 +4,8 @@ # # pip-compile --output-file requirements.txt requirements.in # -decorator==4.0.10 # via networkx -networkx==1.11 -numpy==1.11.1 -rgmining-common==0.9.0 -rgmining-review==0.9.0 +decorator>=4.0.10 # via networkx +networkx>=1.11 +numpy>=1.11.1 +rgmining-common>=0.9.0 +rgmining-review>=0.9.0 diff --git a/setup.py b/setup.py index c78a6cc..d0a2e0c 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def _load_requires_from_file(filepath): setup( name='rgmining-ria', - version='0.9.0', + version='0.9.1', author="Junpei Kawamoto", author_email="kawamoto.junpei@gmail.com", description="Repeated Improvement Analysis Algorithm for Review graph mining project",