Skip to content

Commit f534d92

Browse files
authored
Merge pull request #233 from pymc-labs/version-bump
Version bump to 0.1.0
2 parents 3070bc9 + 9ce7033 commit f534d92

File tree

3 files changed

+13
-19
lines changed

3 files changed

+13
-19
lines changed

causalpy/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.14"
1+
__version__ = "0.1.0"

docs/source/_static/classes.png

63.7 KB
Loading

pyproject.toml

+12-18
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ exclude = ["causalpy.test*", "docs*"]
1313

1414
[project]
1515
name = "CausalPy"
16-
version = "0.0.14"
16+
version = "0.1.0"
1717
description = "Causal inference for quasi-experiments in Python"
1818
readme = "README.md"
19-
license = {file = "LICENSE"}
19+
license = { file = "LICENSE" }
2020
authors = [{ name = "Ben Vincent", email = "[email protected]" }]
2121
requires-python = ">=3.8"
2222

@@ -48,13 +48,9 @@ dependencies = [
4848
#
4949
# Similar to `dependencies` above, these must be valid existing projects.
5050
[project.optional-dependencies]
51-
dev = [
52-
"pathlib",
53-
"pre-commit",
54-
"twine",
55-
"interrogate",
56-
]
57-
docs = ["ipykernel",
51+
dev = ["pathlib", "pre-commit", "twine", "interrogate"]
52+
docs = [
53+
"ipykernel",
5854
"linkify-it-py",
5955
"myst-nb",
6056
"pathlib",
@@ -65,19 +61,17 @@ docs = ["ipykernel",
6561
"sphinx-rtd-theme",
6662
"statsmodels",
6763
"sphinxcontrib-bibtex",
68-
]
69-
lint = ["black",
64+
]
65+
lint = [
66+
"black",
7067
"flake8",
7168
"interrogate",
7269
"isort",
7370
"nbqa",
7471
"pre-commit",
75-
"pylint"
76-
]
77-
test = [
78-
"pytest",
79-
"pytest-cov",
80-
]
72+
"pylint",
73+
]
74+
test = ["pytest", "pytest-cov"]
8175

8276
[metadata]
8377
description-file = 'README.md'
@@ -107,7 +101,7 @@ testpaths = "causalpy/tests"
107101
markers = [
108102
"integration: mark as an integration test.",
109103
"slow: mark test as slow.",
110-
]
104+
]
111105

112106
[tool.interrogate]
113107
ignore-init-method = true

0 commit comments

Comments
 (0)