This repository was archived by the owner on Aug 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and 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.
Original file line number Diff line number Diff line change 1111AUTHOR_EMAIL = "john.s.andersen@intel.com"
1212# Install dffml if it is not installed in development mode
1313INSTALL_REQUIRES = [] + (
14- ["dffml>=0.3.1 " ]
14+ ["dffml>=0.3.3 " ]
1515 if not any (
1616 list (
1717 map (
Original file line number Diff line number Diff line change 77
88Version of DFFML
99"""
10- VERSION = "0.3.2 "
10+ VERSION = "0.3.3 "
Original file line number Diff line number Diff line change 1212AUTHOR_EMAIL = "john.s.andersen@intel.com"
1313# Install dffml if it is not installed in development mode
1414INSTALL_REQUIRES = [] + (
15- ["dffml>=0.3.1 " ]
15+ ["dffml>=0.3.3 " ]
1616 if not any (
1717 list (
1818 map (
Original file line number Diff line number Diff line change 1919 readme = f .read ()
2020
2121INSTALL_REQUIRES = [] + (
22- ["dffml>=0.3.1 " ]
22+ ["dffml>=0.3.3 " ]
2323 if not any (
2424 list (
2525 map (
Original file line number Diff line number Diff line change 1919 readme = f .read ()
2020
2121INSTALL_REQUIRES = ["python-dateutil>=2.7.3" ] + (
22- ["dffml>=0.3.1 " ]
22+ ["dffml>=0.3.3 " ]
2323 if not any (
2424 list (
2525 map (
Original file line number Diff line number Diff line change 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 (
Original file line number Diff line number Diff line change 1919 readme = f .read ()
2020
2121INSTALL_REQUIRES = ["numpy>=1.16.4" ] + (
22- ["dffml>=0.3.1 " ]
22+ ["dffml>=0.3.3 " ]
2323 if not any (
2424 list (
2525 map (
Original file line number Diff line number Diff line change 1919 readme = f .read ()
2020
2121INSTALL_REQUIRES = ["tensorflow>=2.0.0" ] + (
22- ["dffml>=0.3.1 " ]
22+ ["dffml>=0.3.3 " ]
2323 if not any (
2424 list (
2525 map (
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments