forked from J535D165/recordlinkage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix usage examples (J535D165#190) * Fix broken links (J535D165#186) This commit fixes broken links in readme. * Add threshold None and label docstrings for String (J535D165#189) * Add support for pandas==2 (J535D165#192) * Replace setup.py by pyproject.toml (J535D165#195) * Lint with Ruff and format with Black (J535D165#196) * Lint with Ruff and format with Black * Fix more lint issues * Fix datasets submodule * Fix all lint errors * Fix importerror * Replace flake8 in github action by ruff * Fix linter * Fix abstractmethod errors * Fix test with incorrect error * Update ci-workflow.yml * Update CI docs generation and CI pipeline (J535D165#197) * Bump minimal versions of dependencies * Update the docs CI pipeline (J535D165#198) * Add requirements to .readthedocs.yaml * Bump minimal Python version in documentation * Add pre-commit hooks (J535D165#199) * Update CI pipeline for publishing package * disable docs and publish GH actions * only trigger on PR * fixed linting * updated to latest ruff * Update GitHub Actions workflows --------- Co-authored-by: Martinho Hoffman <39743428+martinhohoff@users.noreply.github.com> Co-authored-by: andyjessen <62343929+andyjessen@users.noreply.github.com> Co-authored-by: David GG <37239554+davidggphy@users.noreply.github.com> Co-authored-by: Jonathan de Bruin <jonathandebruinos@gmail.com>
- Loading branch information
1 parent
d3cdb24
commit 2199885
Showing
59 changed files
with
425 additions
and
3,293 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,19 @@ | ||
# name: Build HTML on macOS | ||
# name: Build HTML with Sphinx | ||
# on: [push, pull_request] | ||
# jobs: | ||
# html-macos: | ||
# runs-on: macos-latest | ||
# html-sphinx: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Clone repo | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# fetch-depth: 0 | ||
# - name: Install pandoc | ||
# run: | | ||
# brew install pandoc | ||
# uses: actions/checkout@v2 | ||
# - name: Set up Python | ||
# uses: actions/setup-python@v4 | ||
# uses: actions/setup-python@v2 | ||
# with: | ||
# python-version: '3.8' | ||
# - name: Install recordlinkage | ||
# run: | | ||
# python -m pip install .[all] | ||
# - name: Install docs dependencies | ||
# python-version: '3.10' | ||
# - name: Install recordlinkage and docs tools | ||
# run: | | ||
# python -m pip install -r docs/requirements.txt | ||
# sudo apt install pandoc | ||
# python -m pip install .[docs] | ||
# - name: Build HTML | ||
# run: | | ||
# python -m sphinx -W --keep-going --color docs/ _build/html/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
|
||
recordlinkage/datasets/krebsregister/* | ||
|
||
recordlinkage/_version.py | ||
|
||
|
||
.DS_Store | ||
*/.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
python: | ||
install: | ||
- method: pip | ||
path: . | ||
extra_requirements: | ||
- docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
include versioneer.py | ||
include recordlinkage/_version.py | ||
|
||
recursive-include recordlinkage/datasets/febrl *.csv | ||
recursive-include recordlinkage/datasets/krebsregister *.csv | ||
|
||
|
||
global-exclude test_*.py | ||
global-exclude *_test.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.