Skip to content
This repository was archived by the owner on Jan 3, 2026. It is now read-only.

Commit 48e1c33

Browse files
authored
build(development): update black version (#12)
* build(development): update black version Signed-off-by: Stanislav Filin <6159524+stasfilin@users.noreply.github.com> * ci: change pythonpackage.yml Signed-off-by: Stanislav Filin <6159524+stasfilin@users.noreply.github.com> * ci: pin version from latest to ubuntu-22.04 Signed-off-by: Stanislav Filin <6159524+stasfilin@users.noreply.github.com> * build: remove 3.7 support Signed-off-by: Stanislav Filin <6159524+stasfilin@users.noreply.github.com> * build: change version to 24.8.0 Signed-off-by: Stanislav Filin <6159524+stasfilin@users.noreply.github.com> * build: add py3.11, py3.12, py.3.13 to build Signed-off-by: Stanislav Filin <6159524+stasfilin@users.noreply.github.com> --------- Signed-off-by: Stanislav Filin <6159524+stasfilin@users.noreply.github.com>
1 parent 168121e commit 48e1c33

3 files changed

Lines changed: 19 additions & 20 deletions

File tree

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3-
41
name: Python package
52

63
on:
@@ -11,23 +8,25 @@ on:
118

129
jobs:
1310
build:
14-
1511
runs-on: ubuntu-latest
1612
strategy:
1713
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1915

2016
steps:
21-
- uses: actions/checkout@v2
22-
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v1
24-
with:
25-
python-version: ${{ matrix.python-version }}
26-
- name: Install dependencies
27-
run: |
28-
python -m pip install --upgrade pip
29-
pip install -r requirements/base.txt
30-
pip install -r requirements/development.txt
31-
- name: Test with pytest
32-
run: |
33-
pytest tests -s
17+
- uses: actions/checkout@v2
18+
19+
- name: Set up Python ${{ matrix.python-version }}
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install -r requirements/base.txt
28+
pip install -r requirements/development.txt
29+
30+
- name: Test with pytest
31+
run: |
32+
pytest tests -s

requirements/development.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pytest==7.1.2
2-
black==19.10b0
2+
black==24.8.0
33
requests-mock==1.8.0
44
pytest-mock==3.1.0

sendcloud/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.4"
1+
__version__ = "0.1.5"

0 commit comments

Comments
 (0)