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

Commit 76cfa9d

Browse files
committed
release: Version 0.3.3
Signed-off-by: John Andersen <[email protected]>
1 parent 0a56ee5 commit 76cfa9d

File tree

12 files changed

+19
-12
lines changed

12 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.3.3] - 2020-02-10
88
### Added
99
- Moved from TensorFlow 1 to TensorFlow 2.
1010
- IDX Sources to read binary data files and train models on MNIST Dataset
@@ -96,7 +96,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9696
- Automatic documentation deployment to GitHub Pages
9797
- Function to create a config class dynamically, analogous to `make_dataclass`
9898
- `ConfigLoaders` class which loads config files from a file or directory to a dictionary.
99-
10099
### Changed
101100
- CLI tests and integration tests derive from `AsyncExitStackTestCase`
102101
- SciKit models now use the auto args and config methods.

config/yaml/setup_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
AUTHOR_EMAIL = "[email protected]"
1212
# Install dffml if it is not installed in development mode
1313
INSTALL_REQUIRES = [] + (
14-
["dffml>=0.3.1"]
14+
["dffml>=0.3.3"]
1515
if not any(
1616
list(
1717
map(

dffml/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
88
Version of DFFML
99
"""
10-
VERSION = "0.3.2"
10+
VERSION = "0.3.3"

examples/shouldi/setup_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
AUTHOR_EMAIL = "[email protected]"
1313
# Install dffml if it is not installed in development mode
1414
INSTALL_REQUIRES = [] + (
15-
["dffml>=0.3.1"]
15+
["dffml>=0.3.3"]
1616
if not any(
1717
list(
1818
map(

feature/auth/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
readme = f.read()
2020

2121
INSTALL_REQUIRES = [] + (
22-
["dffml>=0.3.1"]
22+
["dffml>=0.3.3"]
2323
if not any(
2424
list(
2525
map(

feature/git/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
readme = f.read()
2020

2121
INSTALL_REQUIRES = ["python-dateutil>=2.7.3"] + (
22-
["dffml>=0.3.1"]
22+
["dffml>=0.3.3"]
2323
if not any(
2424
list(
2525
map(

model/scikit/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"joblib>=0.13.2",
1515
"pandas>=0.25.0",
1616
] + (
17-
["dffml>=0.3.2"]
17+
["dffml>=0.3.3"]
1818
if not any(
1919
list(
2020
map(

model/scratch/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
readme = f.read()
2020

2121
INSTALL_REQUIRES = ["numpy>=1.16.4"] + (
22-
["dffml>=0.3.1"]
22+
["dffml>=0.3.3"]
2323
if not any(
2424
list(
2525
map(

model/tensorflow/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
readme = f.read()
2020

2121
INSTALL_REQUIRES = ["tensorflow>=2.0.0"] + (
22-
["dffml>=0.3.1"]
22+
["dffml>=0.3.3"]
2323
if not any(
2424
list(
2525
map(

scripts/bump_deps.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
# Update all dependents of DFFML so that they require the latest version
3+
4+
VERSION="$(dffml service dev setuppy kwarg version setup.py)"
5+
6+
for file in $(git grep "dffml>=.*\\." | sed 's/:.*//g'); do
7+
sed -i "s/dffml>=.*\"/dffml>=${VERSION}\"/g" "${file}";
8+
done

0 commit comments

Comments
 (0)