Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
amaiya committed Jun 15, 2024
1 parent b2acc5e commit 8defdd4
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion causalnlp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.7.0"
__version__ = "0.8.dev"

from .core.causalinference import CausalInferenceModel
from .autocoder import Autocoder
Expand Down
20 changes: 20 additions & 0 deletions nbs/_quarto.yml
Original file line number Diff line number Diff line change
@@ -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]
9 changes: 9 additions & 0 deletions nbs/nbdev.yml
Original file line number Diff line number Diff line change
@@ -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/"
6 changes: 3 additions & 3 deletions settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ author = Arun S. Maiya
author_email = [email protected]
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
Expand All @@ -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
Expand Down

0 comments on commit 8defdd4

Please sign in to comment.