Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
release: Version 0.3.4
Browse files Browse the repository at this point in the history
Signed-off-by: John Andersen <[email protected]>
  • Loading branch information
pdxjohnny committed Feb 29, 2020
1 parent 8814c39 commit 744a5c8
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion config/yaml/setup_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
AUTHOR_EMAIL = "[email protected]"
# 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(
Expand Down
2 changes: 1 addition & 1 deletion dffml/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
Version of DFFML
"""
VERSION = "0.3.3"
VERSION = "0.3.4"
2 changes: 1 addition & 1 deletion docs/contributing/codebase.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 0 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <webui/>`_.

This is the documentation for the latest release, documentation for the master
branch can be found `here <master/index.html>`_.

Expand Down
2 changes: 1 addition & 1 deletion examples/shouldi/setup_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
AUTHOR_EMAIL = "[email protected]"
# 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(
Expand Down
2 changes: 1 addition & 1 deletion feature/auth/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
readme = f.read()

INSTALL_REQUIRES = [] + (
["dffml>=0.3.3"]
["dffml>=0.3.4"]
if not any(
list(
map(
Expand Down
2 changes: 1 addition & 1 deletion feature/git/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion model/scikit/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion model/scratch/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion model/tensorflow/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion model/tensorflow_hub/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"numpy>=1.16.4",
]
+ (
["dffml>=0.3.3"]
["dffml>=0.3.4"]
if not any(
list(
map(
Expand Down
2 changes: 1 addition & 1 deletion service/http/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
AUTHOR_EMAIL = "[email protected]"
# 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(
Expand Down
2 changes: 1 addition & 1 deletion source/mysql/setup_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
AUTHOR_EMAIL = "[email protected]"
# 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(
Expand Down

0 comments on commit 744a5c8

Please sign in to comment.