Skip to content

Commit a448694

Browse files
taylorfturnergliptakabajpai15carlsonpSchadtJ
authored
Version.py update 0.11.0 (#1139)
* Replace snappy with cramjam (#1091) * add downloads tile (#1085) * Replace snappy with cramjam * Delete test_no_snappy --------- Co-authored-by: Taylor Turner <[email protected]> * Quick fix for dependency max pins (#1120) * Fix dask_expr * Keras and Tensorflow version fix * Keras and Tensorflow version fix * Fix keras bug * pre-commit fix (#1122) * docs: update test link to latest version (#1114) * docs: add contributor notes on where to find documentation branches (#1113) * docs: add contributor notes on where to find documentation branches * docs: update documentation wording to spell out why `dev-gh-pages` and `gh-pages` branches exist for staging content * docs: add note on fork Co-authored-by: Taylor Turner <[email protected]> * Update .github/CONTRIBUTING.md Co-authored-by: Taylor Turner <[email protected]> --------- Co-authored-by: Taylor Turner <[email protected]> * update black version (#1131) * Add memray max version (#1132) * Bug fix for float precision calculation using categorical data with trailing zeros. (#1125) * Revert "Bug fix for float precision calculation using categorical data with t…" (#1133) This reverts commit d3159bd. * fix * make up to date * yep, shouldn't change * bump version --------- Co-authored-by: Gábor Lipták <[email protected]> Co-authored-by: abajpai15 <[email protected]> Co-authored-by: Patrick Carlson <[email protected]> Co-authored-by: James Schadt <[email protected]>
1 parent f8b3e5d commit a448694

File tree

6 files changed

+20
-15
lines changed

6 files changed

+20
-15
lines changed

.github/CONTRIBUTING.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To execute unit tests, run the following
4848
DATAPROFILER_SEED=0 python3 -m unittest discover -p "test*.py"
4949
```
5050

51-
For more nuanced testing runs, check out more detailed documentation [here](https://capitalone.github.io/DataProfiler/docs/0.8.1/html/install.html#testing).
51+
For more nuanced testing runs, check out more detailed documentation [here](https://capitalone.github.io/DataProfiler/docs/0.11.0/html/install.html#testing).
5252

5353
## Creating [Pull Requests](https://github.com/capitalone/DataProfiler/pulls)
5454
Pull requests are the best way to propose changes to the codebase. We actively welcome your pull requests:
@@ -106,3 +106,8 @@ the documentation.
106106

107107
## Updating Dependencies
108108
If you make changes to the `requirements` text files, please also update the `additional_dependencies` list under the `mypy` hook in `.pre-commit-config.yaml`. This is necessary for accurate type-checking.
109+
110+
## Contributing Documentation Changes and Fixes
111+
When making adjustments or contributions to documentation, please use the `dev-gh-pages` branch. This is where all the documentation lives.
112+
After you've completed your edits, open a Github Pull Request (PR) to merge into `dev-gh-pages` from your fork. During a version release, `dev-gh-pages` is merged
113+
into the `gh-pages` branch (after `update_documentation.py` is run) and is the version associated with the documentation website and stable version.

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ repos:
8080

8181
# requirements-ml.txt
8282
scikit-learn>=0.23.2,
83-
keras>=2.4.3,
83+
'keras>=2.4.3,<3.0.0',
8484
rapidfuzz>=2.6.1,
85-
tensorflow>=2.6.4; sys.platform != 'darwin',
86-
tensorflow>=2.6.4; sys_platform == 'darwin' and platform_machine != 'arm64',
87-
tensorflow-macos>=2.6.4; sys_platform == 'darwin' and platform_machine == 'arm64',
85+
"tensorflow>=2.6.4,<2.15.0; sys.platform != 'darwin'",
86+
"tensorflow>=2.6.4,<2.15.0; sys_platform == 'darwin' and platform_machine != 'arm64'",
87+
"tensorflow-macos>=2.6.4,<2.15.0; sys_platform == 'darwin' and platform_machine == 'arm64'",
8888
tqdm>=4.0.0,
8989

9090
# requirements-reports.txt
@@ -100,7 +100,7 @@ repos:
100100
pytest-xdist>=2.1.0,
101101
pytest-forked>=1.3.0,
102102
toolz>=0.10.0,
103-
memray>=1.7.0,
103+
'memray>=1.7.0,<1.12.0',
104104
]
105105
# Check-manifest: ensures required non-Python files are included in MANIFEST.in
106106
# https://github.com/mgedmin/check-manifest/blob/master/.pre-commit-hooks.yaml

dataprofiler/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
"""File contains the version number for the package."""
22

33
MAJOR = 0
4-
MINOR = 10
5-
MICRO = 9
4+
MINOR = 11
5+
MICRO = 0
66
POST = None # otherwise None
77

88
VERSION = "%d.%d.%d" % (MAJOR, MINOR, MICRO)

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
check-manifest>=0.48
2-
black==22.3.0
2+
black>=24.3.0
33
isort==5.12.0
44
pre-commit==2.19.0
55
tox==3.25.1

requirements-ml.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
scikit-learn>=0.23.2
2-
keras>=2.4.3
2+
keras>=2.4.3,<3.0.0
33
rapidfuzz>=2.6.1
4-
tensorflow>=2.6.4; sys.platform != 'darwin'
5-
tensorflow>=2.6.4; sys_platform == 'darwin' and platform_machine != 'arm64'
6-
tensorflow-macos>=2.6.4; sys_platform == 'darwin' and platform_machine == 'arm64'
4+
tensorflow>=2.6.4,<2.15.0; sys.platform != 'darwin'
5+
tensorflow>=2.6.4,<2.15.0; sys_platform == 'darwin' and platform_machine != 'arm64'
6+
tensorflow-macos>=2.6.4,<2.15.0; sys_platform == 'darwin' and platform_machine == 'arm64'
77
tqdm>=4.0.0

requirements-test.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
coverage>=5.0.1
2-
dask>=2.29.0
2+
dask>=2.29.0,<2024.2.0
33
fsspec>=0.3.3
44
pytest>=6.0.1
55
pytest-cov>=2.8.1
66
pytest-xdist>=2.1.0
77
pytest-forked>=1.3.0
88
toolz>=0.10.0
9-
memray>=1.7.0
9+
memray>=1.7.0,<1.12.0

0 commit comments

Comments
 (0)