From 744a5c82cec7a49d242510d1855e8273d77c878d Mon Sep 17 00:00:00 2001 From: John Andersen Date: Fri, 28 Feb 2020 16:50:46 -0800 Subject: [PATCH] release: Version 0.3.4 Signed-off-by: John Andersen --- CHANGELOG.md | 2 +- config/yaml/setup_common.py | 2 +- dffml/version.py | 2 +- docs/contributing/codebase.rst | 2 +- docs/index.rst | 2 -- examples/shouldi/setup_common.py | 2 +- feature/auth/setup.py | 2 +- feature/git/setup.py | 2 +- model/scikit/setup.py | 2 +- model/scratch/setup.py | 2 +- model/tensorflow/setup.py | 2 +- model/tensorflow_hub/setup.py | 2 +- service/http/setup.py | 2 +- source/mysql/setup_common.py | 2 +- 14 files changed, 13 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2737a1c39..432973a981 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.3.4] - 2020-02-28 ### Added - Tensorflow hub NLP models. - Notes on development dependencies in `setup.py` files to codebase notes. diff --git a/config/yaml/setup_common.py b/config/yaml/setup_common.py index 5a55b0a951..6e6f91ceb2 100644 --- a/config/yaml/setup_common.py +++ b/config/yaml/setup_common.py @@ -11,7 +11,7 @@ AUTHOR_EMAIL = "john.s.andersen@intel.com" # Install dffml if it is not installed in development mode INSTALL_REQUIRES = [] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map( diff --git a/dffml/version.py b/dffml/version.py index 7d1fc6f271..7008d41c0f 100644 --- a/dffml/version.py +++ b/dffml/version.py @@ -7,4 +7,4 @@ Version of DFFML """ -VERSION = "0.3.3" +VERSION = "0.3.4" diff --git a/docs/contributing/codebase.rst b/docs/contributing/codebase.rst index 887bdb4231..4804b5cd2c 100644 --- a/docs/contributing/codebase.rst +++ b/docs/contributing/codebase.rst @@ -169,7 +169,7 @@ You might have asked yourself, what is this thing? .. code-block:: python INSTALL_REQUIRES = [] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map( diff --git a/docs/index.rst b/docs/index.rst index 29b0051e31..5435c09f17 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -32,8 +32,6 @@ Output: You can use DFFML from the command line, Python, or the HTTP API, see the :doc:`quickstart/model` to get started right away. -The web UI (under heavy development) can be found `here `_. - This is the documentation for the latest release, documentation for the master branch can be found `here `_. diff --git a/examples/shouldi/setup_common.py b/examples/shouldi/setup_common.py index ba680be6f7..f967bf99a3 100644 --- a/examples/shouldi/setup_common.py +++ b/examples/shouldi/setup_common.py @@ -11,7 +11,7 @@ AUTHOR_EMAIL = "john.s.andersen@intel.com" # Install dffml if it is not installed in development mode INSTALL_REQUIRES = [] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map( diff --git a/feature/auth/setup.py b/feature/auth/setup.py index 74e81fe74a..450e8fca23 100644 --- a/feature/auth/setup.py +++ b/feature/auth/setup.py @@ -19,7 +19,7 @@ readme = f.read() INSTALL_REQUIRES = [] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map( diff --git a/feature/git/setup.py b/feature/git/setup.py index e78bfb23a3..327615a289 100644 --- a/feature/git/setup.py +++ b/feature/git/setup.py @@ -19,7 +19,7 @@ readme = f.read() INSTALL_REQUIRES = ["python-dateutil>=2.7.3"] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map( diff --git a/model/scikit/setup.py b/model/scikit/setup.py index 237699a346..b68a6131ce 100644 --- a/model/scikit/setup.py +++ b/model/scikit/setup.py @@ -14,7 +14,7 @@ "joblib>=0.13.2", "pandas>=0.25.0", ] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map( diff --git a/model/scratch/setup.py b/model/scratch/setup.py index 3a9fdbb3a7..b072080e89 100644 --- a/model/scratch/setup.py +++ b/model/scratch/setup.py @@ -19,7 +19,7 @@ readme = f.read() INSTALL_REQUIRES = ["numpy>=1.16.4"] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map( diff --git a/model/tensorflow/setup.py b/model/tensorflow/setup.py index d57343f1f3..cf242757f3 100644 --- a/model/tensorflow/setup.py +++ b/model/tensorflow/setup.py @@ -19,7 +19,7 @@ readme = f.read() INSTALL_REQUIRES = ["tensorflow>=2.0.0"] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map( diff --git a/model/tensorflow_hub/setup.py b/model/tensorflow_hub/setup.py index e7807bd1f2..2ca59b3f0e 100644 --- a/model/tensorflow_hub/setup.py +++ b/model/tensorflow_hub/setup.py @@ -26,7 +26,7 @@ "numpy>=1.16.4", ] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map( diff --git a/service/http/setup.py b/service/http/setup.py index fd3e9cd2ca..89c16b945c 100644 --- a/service/http/setup.py +++ b/service/http/setup.py @@ -11,7 +11,7 @@ AUTHOR_EMAIL = "john.s.andersen@intel.com" # Install dffml if it is not installed in development mode INSTALL_REQUIRES = ["aiohttp>=3.5.4", "aiohttp_cors>=0.7.0"] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map( diff --git a/source/mysql/setup_common.py b/source/mysql/setup_common.py index 5106ead363..f64a40ce46 100644 --- a/source/mysql/setup_common.py +++ b/source/mysql/setup_common.py @@ -11,7 +11,7 @@ AUTHOR_EMAIL = "kjlsudharsana@gmail.com" # Install dffml if it is not installed in development mode INSTALL_REQUIRES = [] + ( - ["dffml>=0.3.3"] + ["dffml>=0.3.4"] if not any( list( map(