Skip to content

Commit 08f1827

Browse files
authored
Merge pull request spotify#108 from spotify/Release-4.0.0
Release 4.0.0 * update Chartify * drop support for python 3.8
2 parents e1f8a49 + 4fc9362 commit 08f1827

File tree

6 files changed

+17
-12
lines changed

6 files changed

+17
-12
lines changed

.github/workflows/confidence.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
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

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
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
@@ -39,4 +39,4 @@ jobs:
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/

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
History
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+
511
3.0.4 (2023-10-12)
612
------------------
713
* Fixing so that other multiple correction methods than Bonferroni are applied correctly.

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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

1110
Python library for AB test analysis.
1211

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = spotify-confidence
3-
version = 3.0.4
3+
version = 4.0.0
44
author = Per Sillren
55
author_email = pers@spotify.com
66
description = Package for calculating and visualising confidence intervals, e.g. for A/B test analysis.
@@ -18,13 +18,13 @@ classifiers =
1818
package_dir =
1919
= .
2020
packages = find:
21-
python_requires = >=3.8
21+
python_requires = >=3.9
2222
install_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]

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[tox]
2-
envlist = python3.8, python3.9, python3.10
2+
envlist = python3.9, python3.10, python3.11
33
skipsdist = True
44
usedevelop = True
55

66
[travis]
77
python =
8-
3.8: python3.8
98
3.9: python3.9
109
3.10: python3.10
10+
3.11: python3.11
1111

1212
[gh-actions]
1313
python =
14-
3.8: python3.8
1514
3.9: python3.9
1615
3.10: python3.10
16+
3.11: python3.11
1717

1818
[testenv]
1919
setenv =

0 commit comments

Comments
 (0)