Skip to content

Commit 4923c63

Browse files
committed
update python requirement and GH actions
Signed-off-by: Florian Charlier <[email protected]>
1 parent 8f148c1 commit 4923c63

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/python-package.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ name: Python package
55

66
on:
77
push:
8-
branches: [ master, dev, v0.2, v0.3, v0.4]
8+
branches: [ master, dev]
99
pull_request:
10-
branches: [ master, dev, v0.2, v0.3, v0.4]
10+
branches: [ master, dev, v0.7]
1111

1212
jobs:
1313
build:
1414

15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-22.04
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', 3.11]
19+
python-version: [3.8, 3.9, '3.10', 3.11]
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies
@@ -40,4 +40,4 @@ jobs:
4040
coverage run -m unittest discover tests
4141
coverage report -m
4242
- name: Upload Coverage to Codecov
43-
uses: codecov/codecov-action@v3
43+
uses: codecov/codecov-action@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Active Development](https://img.shields.io/badge/Maintenance%20Level-Actively%20Developed-brightgreen.svg)](https://gist.github.com/cheerfulstoic/d107229326a01ff0f333a1d3476e068d)
22
![coverage](https://raw.githubusercontent.com/trevismd/statannotations/master/coverage.svg)
3-
![Python](https://img.shields.io/badge/Python-3.6%2B-blue)
3+
![Python](https://img.shields.io/badge/Python-3.8--3.11-blue)
44
[![Documentation Status](https://readthedocs.org/projects/statannotations/badge/?version=latest)](https://statannotations.readthedocs.io/en/master/?badge=latest)
55
[![DOI](https://zenodo.org/badge/296015778.svg)](https://zenodo.org/badge/latestdoi/296015778)
66

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
numpy>=1.12.1
1+
numpy<=1.26.4,>=1.12.1
22
seaborn>=0.9.0,<0.12
3-
matplotlib>=2.2.2
3+
matplotlib>=2.2.2,<3.9
44
pandas>=0.23.0,<2.0.0
55
scipy>=1.1.0
66
statsmodels

0 commit comments

Comments
 (0)