-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #233 from pymc-labs/version-bump
Version bump to 0.1.0
- Loading branch information
Showing
3 changed files
with
13 additions
and
19 deletions.
There are no files selected for viewing
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 +1 @@ | ||
__version__ = "0.0.14" | ||
__version__ = "0.1.0" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -13,10 +13,10 @@ exclude = ["causalpy.test*", "docs*"] | |
|
||
[project] | ||
name = "CausalPy" | ||
version = "0.0.14" | ||
version = "0.1.0" | ||
description = "Causal inference for quasi-experiments in Python" | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
license = { file = "LICENSE" } | ||
authors = [{ name = "Ben Vincent", email = "[email protected]" }] | ||
requires-python = ">=3.8" | ||
|
||
|
@@ -48,13 +48,9 @@ dependencies = [ | |
# | ||
# Similar to `dependencies` above, these must be valid existing projects. | ||
[project.optional-dependencies] | ||
dev = [ | ||
"pathlib", | ||
"pre-commit", | ||
"twine", | ||
"interrogate", | ||
] | ||
docs = ["ipykernel", | ||
dev = ["pathlib", "pre-commit", "twine", "interrogate"] | ||
docs = [ | ||
"ipykernel", | ||
"linkify-it-py", | ||
"myst-nb", | ||
"pathlib", | ||
|
@@ -65,19 +61,17 @@ docs = ["ipykernel", | |
"sphinx-rtd-theme", | ||
"statsmodels", | ||
"sphinxcontrib-bibtex", | ||
] | ||
lint = ["black", | ||
] | ||
lint = [ | ||
"black", | ||
"flake8", | ||
"interrogate", | ||
"isort", | ||
"nbqa", | ||
"pre-commit", | ||
"pylint" | ||
] | ||
test = [ | ||
"pytest", | ||
"pytest-cov", | ||
] | ||
"pylint", | ||
] | ||
test = ["pytest", "pytest-cov"] | ||
|
||
[metadata] | ||
description-file = 'README.md' | ||
|
@@ -107,7 +101,7 @@ testpaths = "causalpy/tests" | |
markers = [ | ||
"integration: mark as an integration test.", | ||
"slow: mark test as slow.", | ||
] | ||
] | ||
|
||
[tool.interrogate] | ||
ignore-init-method = true | ||
|