File tree Expand file tree Collapse file tree 6 files changed +17
-12
lines changed
Expand file tree Collapse file tree 6 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 1313 runs-on : ubuntu-latest
1414 strategy :
1515 matrix :
16- python-version : ['3.8 ', '3.9 ', '3.10 ']
16+ python-version : ['3.9 ', '3.10 ', '3.11 ']
1717
1818 steps :
1919 - uses : actions/checkout@v1
Original file line number Diff line number Diff line change 2222 - name : Set up Python
2323 uses : actions/setup-python@v2
2424 with :
25- python-version : ' 3.7 '
25+ python-version : ' 3.9 '
2626 - name : Install dependencies
2727 run : |
2828 python -m pip install --upgrade pip
3939 with :
4040 user : __token__
4141 password : ${{ secrets.TEST_PYPI_API_TOKEN }}
42- repository_url : https://test.pypi.org/legacy/
42+ repository_url : https://test.pypi.org/legacy/
Original file line number Diff line number Diff line change 22History
33=======
44
5+ 4.0.0 (2024-11-24)
6+ ------------------
7+ * Update mininum requirement for Chartify to avoid cropping bug in `chrome-webdriver `
8+ * Deprecating support for python 3.8
9+
10+
5113.0.4 (2023-10-12)
612------------------
713* Fixing so that other multiple correction methods than Bonferroni are applied correctly.
Original file line number Diff line number Diff line change @@ -2,11 +2,10 @@ Spotify Confidence
22========
33
44![ Status] ( https://img.shields.io/badge/Status-Beta-blue.svg )
5- ![ Latest release] ( https://img.shields.io/badge/release-3.0.4-green.svg " Latest release: 3.0.4 ")
6- ![ Python] ( https://img.shields.io/badge/Python-3.7-blue.svg " Python ")
7- ![ Python] ( https://img.shields.io/badge/Python-3.8-blue.svg " Python ")
5+ ![ Latest release] ( https://img.shields.io/badge/release-4.0.0-green.svg " Latest release: 4.0.0 ")
86![ Python] ( https://img.shields.io/badge/Python-3.9-blue.svg " Python ")
97![ Python] ( https://img.shields.io/badge/Python-3.10-blue.svg " Python ")
8+ ![ Python] ( https://img.shields.io/badge/Python-3.11-blue.svg " Python ")
109
1110Python library for AB test analysis.
1211
Original file line number Diff line number Diff line change 11[metadata]
22name = spotify-confidence
3- version = 3 .0.4
3+ version = 4 .0.0
44author = Per Sillren
55author_email = pers@spotify.com
66description = Package for calculating and visualising confidence intervals, e.g. for A/B test analysis.
@@ -18,13 +18,13 @@ classifiers =
1818package_dir =
1919 = .
2020packages = find:
21- python_requires = >=3.8
21+ python_requires = >=3.9
2222install_requires =
2323 numpy>=1.20.0,<2.0.0
2424 scipy>=1.6.0
2525 pandas>=1.2.0
2626 statsmodels>=0.13.0,<1.0.0
27- chartify>=4 .0.3
27+ chartify>=5 .0.1
2828 ipywidgets>=8.0.0
2929
3030[options.packages.find]
Original file line number Diff line number Diff line change 11[tox]
2- envlist = python3.8 , python3.9 , python3.10
2+ envlist = python3.9 , python3.10 , python3.11
33skipsdist = True
44usedevelop = True
55
66[travis]
77python =
8- 3.8: python3.8
98 3.9: python3.9
109 3.10: python3.10
10+ 3.11: python3.11
1111
1212[gh-actions]
1313python =
14- 3.8: python3.8
1514 3.9: python3.9
1615 3.10: python3.10
16+ 3.11: python3.11
1717
1818[testenv]
1919setenv =
You can’t perform that action at this time.
0 commit comments