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.3
Browse files Browse the repository at this point in the history
Signed-off-by: John Andersen <[email protected]>
  • Loading branch information
pdxjohnny committed Feb 11, 2020
1 parent 0a56ee5 commit 76cfa9d
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 12 deletions.
3 changes: 1 addition & 2 deletions 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.3] - 2020-02-10
### Added
- Moved from TensorFlow 1 to TensorFlow 2.
- IDX Sources to read binary data files and train models on MNIST Dataset
Expand Down Expand Up @@ -96,7 +96,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Automatic documentation deployment to GitHub Pages
- Function to create a config class dynamically, analogous to `make_dataclass`
- `ConfigLoaders` class which loads config files from a file or directory to a dictionary.

### Changed
- CLI tests and integration tests derive from `AsyncExitStackTestCase`
- SciKit models now use the auto args and config methods.
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.1"]
["dffml>=0.3.3"]
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.2"
VERSION = "0.3.3"
2 changes: 1 addition & 1 deletion examples/shouldi/setup_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
AUTHOR_EMAIL = "[email protected]"
# Install dffml if it is not installed in development mode
INSTALL_REQUIRES = [] + (
["dffml>=0.3.1"]
["dffml>=0.3.3"]
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.1"]
["dffml>=0.3.3"]
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.1"]
["dffml>=0.3.3"]
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.2"]
["dffml>=0.3.3"]
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.1"]
["dffml>=0.3.3"]
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.1"]
["dffml>=0.3.3"]
if not any(
list(
map(
Expand Down
8 changes: 8 additions & 0 deletions scripts/bump_deps.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# Update all dependents of DFFML so that they require the latest version

VERSION="$(dffml service dev setuppy kwarg version setup.py)"

for file in $(git grep "dffml>=.*\\." | sed 's/:.*//g'); do
sed -i "s/dffml>=.*\"/dffml>=${VERSION}\"/g" "${file}";
done
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.1"]
["dffml>=0.3.3"]
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.1"]
["dffml>=0.3.3"]
if not any(
list(
map(
Expand Down

0 comments on commit 76cfa9d

Please sign in to comment.