Skip to content

Commit

Permalink
refactor: update to TF2.6+ and numpy 1.2.1+
Browse files Browse the repository at this point in the history
  • Loading branch information
JGSweets committed Aug 22, 2022
1 parent 511d394 commit 405bb44
Show file tree
Hide file tree
Showing 13 changed files with 65 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
python-version: [3.7, 3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
black==22.3.0
isort==5.10.1
pre-commit==2.19.0
tox==3.25.1
4 changes: 2 additions & 2 deletions requirements-ml.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
scikit-learn>=0.23.2
keras>=2.4.3
tensorflow-gpu>=2.3.0; sys.platform == 'linux'
tensorflow>=2.3.0; sys.platform == 'darwin'
tensorflow-gpu>=2.6.4; sys.platform == 'linux'
tensorflow>=2.6.4; sys.platform == 'darwin'
tqdm>=4.0.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
h5py>=2.10.0
wheel>=0.33.1
future>=0.18.2
numpy>=1.18.5
numpy>=1.21.1
pandas>=1.1.2
python-dateutil>=2.7.5
pytz>=2020.1
Expand Down
29 changes: 29 additions & 0 deletions resources/labelers/structured_model/keras_metadata.pb

Large diffs are not rendered by default.

Binary file modified resources/labelers/structured_model/saved_model.pb
Binary file not shown.
Binary file not shown.
Binary file modified resources/labelers/structured_model/variables/variables.index
Binary file not shown.
29 changes: 29 additions & 0 deletions resources/labelers/unstructured_model/keras_metadata.pb

Large diffs are not rendered by default.

Binary file modified resources/labelers/unstructured_model/saved_model.pb
Binary file not shown.
Binary file not shown.
Binary file modified resources/labelers/unstructured_model/variables/variables.index
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@
setup(
name="DataProfiler",
version=__version__,
python_requires=">=3.6",
python_requires=">=3.7",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
# The project's main homepage.
url="https://github.com/capitalone/data-profiler",
# Author details
author="Jeremy Goodsitt, Austin Walters, Anh Truong, Grant Eden",
author="Jeremy Goodsitt, Taylor Turner, Michael Davis, Kenny Bean, Tyler Farnan",
# Choose your license
license="Apache License, Version 2.0",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit 405bb44

Please sign in to comment.