Skip to content

Commit b9bddad

Browse files
committed
various fixes
1 parent ea3a849 commit b9bddad

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Generate documentation
5353
run: |
54-
pdoc pyfusefilter --output-dir docs --html --force --show-source --search --docformat google
54+
pdoc pyfusefilter --output-dir docs --show-source --search --docformat google
5555
5656
- name: Upload artifact
5757
uses: actions/upload-pages-artifact@v3

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ name = "pyfusefilter"
4545
description = "Python bindings for C implementation of xor and fuse filters"
4646
version = "1.0.1"
4747
author = "Amey Narkhede & Daniel Lemire"
48-
author_email = "[email protected]"
49-
url = "https://github.com/glitzflitz/pyfusefilter"
48+
author_email = "[email protected]"
49+
url = "https://github.com/FastFilter/pyfusefilter"
5050

5151
# Documentation settings
5252
docstring_style = "google"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
description="Python bindings for C implementation of xorfilter",
88
long_description=open("README.md", "r", encoding='utf-8').read(),
99
long_description_content_type="text/markdown",
10-
author="Amey Narkhede",
11-
author_email="[email protected]",
12-
url="https://github.com/glitzflitz/pyfusefilter",
10+
author="Amey Narkhede & Daniel Lemire",
11+
author_email="[email protected]",
12+
url="https://github.com/FastFilter/pyfusefilter",
1313
# license handled in pyproject.toml
1414
python_requires=">=3.0",
1515
packages=find_packages(),

0 commit comments

Comments
 (0)