diff --git a/CHANGELOG.md b/CHANGELOG.md index b8efaf3..91d1d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ Most recent releases are shown at the top. Each release shows: - **Changed**: Additional parameters, changes to inputs or outputs, etc - **Fixed**: Bug fixes that don't change documented behaviour +## 0.8.dev (TBD) + +### New: +- N/A + +### Changed +- migrated from `nbdev1` to `nbdev2` + +### Fixed: +- fixed dependency issues with scikit-learn and pandas + + ## 0.7.0 (2022-08-02) ### New: diff --git a/causalnlp/__init__.py b/causalnlp/__init__.py index aa84cd9..d060b9d 100644 --- a/causalnlp/__init__.py +++ b/causalnlp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.7.0" +__version__ = "0.8.dev" from .core.causalinference import CausalInferenceModel from .autocoder import Autocoder diff --git a/nbs/_quarto.yml b/nbs/_quarto.yml new file mode 100644 index 0000000..0a6dfcb --- /dev/null +++ b/nbs/_quarto.yml @@ -0,0 +1,20 @@ +project: + type: website + +format: + html: + theme: cosmo + css: styles.css + toc: true + +website: + twitter-card: true + open-graph: true + repo-actions: [issue] + navbar: + background: primary + search: true + sidebar: + style: floating + +metadata-files: [nbdev.yml, sidebar.yml] \ No newline at end of file diff --git a/nbs/nbdev.yml b/nbs/nbdev.yml new file mode 100644 index 0000000..bd32080 --- /dev/null +++ b/nbs/nbdev.yml @@ -0,0 +1,9 @@ +project: + output-dir: _docs + +website: + title: "causalnlp" + site-url: "https://amaiya.github.io/causalnlp/" + description: "CausalNLP: A Practical Toolkit for Causal Inference with Text" + repo-branch: main + repo-url: "https://github.com/amaiya/causalnlp/tree/main/" diff --git a/settings.ini b/settings.ini index e2f6514..caa2651 100644 --- a/settings.ini +++ b/settings.ini @@ -13,8 +13,8 @@ author = Arun S. Maiya author_email = arun@maiya.net copyright = Arun S. Maiya branch = main -version = 0.7.0 -min_python = 3.6 +version = 0.8.dev +min_python = 3.8 audience = Developers language = English # Set to True if you want to create a more fancy sidebar.json than the default @@ -40,7 +40,7 @@ requirements = transformers pandas numpy>=1.18.5 scipy>=1.4.1 matplotlib pandas # Change to, e.g. "nbs", to put your notebooks in nbs dir instead of repo root nbs_path = nbs -doc_path = docs +doc_path = _docs # Whether to look for library notebooks recursively in the `nbs_path` dir recursive = False