Skip to content

Commit 248920a

Browse files
committed
Update readme, re-enable restriction to only publish on main, increment changelog
1 parent f48d25f commit 248920a

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
pytest .
3131
rm -rf .venv
3232
- name: Publish to PYPI
33-
# if: github.ref_name == 'main'
33+
if: github.ref_name == 'main'
3434
run: |
3535
pip install poetry
3636
poetry config virtualenvs.create false

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
## Version 0.1.1
2+
- Fix import example in README
3+
14
## Version 0.1.0
25
- Initial release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ customers / number of visitors) by at least 1%.
3535
You initialize Basemath using the following Python code:
3636

3737
```python
38-
import basemath_analysis as bm
38+
import basemath_analysis.basemath as bm
3939
bm_test = bm.BaseMathsTest(cr_A, mde, alpha, beta, seed="experiment_name")
4040
```
4141
The parameters are as follows:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "basemath-analysis"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "A library for BaseMath's test, a novel Group Sequential Testing approach that enables the user to stop early."
55
authors = ["Data Products GYG <engineering.data-products@getyourguide.com>"]
66
license = "Apache License 2.0"

0 commit comments

Comments
 (0)