Skip to content

Commit

Permalink
fix requirements
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolay Ulmasov <[email protected]>
  • Loading branch information
r3stl355 committed Nov 3, 2023
1 parent ee5b4d0 commit 8416847
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
echo "Commit to gh-pages branch..."
git reset --hard HEAD
git clean -d -fx .
git checkout gh-pages
#cd ..
#cp -avr ~/build/html/. ./python
Expand Down
11 changes: 8 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
mkdocs
mkdocstrings[python]
mkdocs-autorefs
mkdocs==1.5.3
mkdocstrings[python]==0.23.0
mkdocs-autorefs==0.5.0

mkdocs-material==9.4.5
mkdocs-macros-plugin==1.0.4
markdown-exec[ansi]==1.7.0
mkdocs-simple-hooks==0.1.5
1 change: 0 additions & 1 deletion docs/src/python/delta_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ def get_table_info():
print(f"Version: {dt.version()}")
print(f"Files: {dt.files()}")
# --8<-- [end:get_table_info]

2 changes: 1 addition & 1 deletion python/deltalake/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ def repair(self, dry_run: bool = False) -> Dict[str, Any]:
or corrupted files.
Args:
dry_run(bool): when activated, list only the files, otherwise add remove actions to transaction log. Defaults to False.
dry_run: when activated, list only the files, otherwise add remove actions to transaction log. Defaults to False.
Returns:
The metrics from repair (FSCK) action.
Expand Down

0 comments on commit 8416847

Please sign in to comment.