Skip to content

Commit bdc1251

Browse files
authored
Merge pull request #137 from bobbrodie/7.0.x
SP-1085 Preparing v7.0.0
2 parents 55c3bd9 + b2773fe commit bdc1251

File tree

6 files changed

+327
-325
lines changed

6 files changed

+327
-325
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,13 @@ name: Build
33
on: [push, pull_request]
44

55
jobs:
6-
build-and-test:
6+
check:
77
runs-on: ubuntu-latest
8-
9-
strategy:
10-
matrix:
11-
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13]
12-
138
steps:
149
- uses: actions/checkout@v4
1510
- uses: actions/setup-python@v5
1611
with:
17-
python-version: ${{ matrix.python-version }}
12+
python-version: 3.9
1813
- name: Install pipenv
1914
run: |
2015
pip3 install pipenv
@@ -29,6 +24,27 @@ jobs:
2924
run: |
3025
pipenv run mypy --install-types --non-interactive src/
3126
pipenv run mypy -p src
27+
28+
test:
29+
runs-on: ubuntu-latest
30+
31+
strategy:
32+
matrix:
33+
python-version: [3.9, '3.10', 3.11, 3.12, 3.13]
34+
35+
steps:
36+
- uses: actions/checkout@v4
37+
- uses: actions/setup-python@v5
38+
with:
39+
python-version: ${{ matrix.python-version }}
40+
- name: Install pipenv
41+
run: |
42+
pip3 install pipenv
43+
pip3 install --upgrade pip
44+
- name: Install dependencies
45+
run: |
46+
pipenv install --dev
47+
pipenv run pip3 install typing-extensions
3248
- name: Run unit tests
3349
run: pipenv run pytest -vv -s -m unit
3450
- name: Run a test build

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.8
16+
python-version: 3.9
1717
- run: |
1818
pip3 install --upgrade build
1919
python -m build

Pipfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ requests = "==2.32.3"
99
pydantic = "==2.9.2"
1010

1111
[dev-packages]
12-
black = "==24.8.0"
12+
black = "==24.10.0"
1313
pytest = "==8.3.3"
1414
pytest-mock = "==3.14.0"
15-
mypy = "==1.11.2"
15+
mypy = "==1.13.0"
1616
pytest-mypy-plugins = "==3.1.2"
1717
pytest-cov = "==5.0.0"
1818

0 commit comments

Comments
 (0)