Skip to content

Commit

Permalink
Update readme, re-enable restriction to only publish on main, increme…
Browse files Browse the repository at this point in the history
…nt changelog
  • Loading branch information
oliviagyg committed Nov 24, 2023
1 parent f48d25f commit 248920a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
pytest .
rm -rf .venv
- name: Publish to PYPI
# if: github.ref_name == 'main'
if: github.ref_name == 'main'
run: |
pip install poetry
poetry config virtualenvs.create false
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
## Version 0.1.1
- Fix import example in README

## Version 0.1.0
- Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ customers / number of visitors) by at least 1%.
You initialize Basemath using the following Python code:

```python
import basemath_analysis as bm
import basemath_analysis.basemath as bm
bm_test = bm.BaseMathsTest(cr_A, mde, alpha, beta, seed="experiment_name")
```
The parameters are as follows:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "basemath-analysis"
version = "0.1.0"
version = "0.1.1"
description = "A library for BaseMath's test, a novel Group Sequential Testing approach that enables the user to stop early."
authors = ["Data Products GYG <[email protected]>"]
license = "Apache License 2.0"
Expand Down

0 comments on commit 248920a

Please sign in to comment.