Skip to content

Commit 47a9180

Browse files
committed
Update deps and bump version
1 parent 1ac77e1 commit 47a9180

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,23 @@ jobs:
3636
'3.9') ENVS="py39-pytest{60,61,62,70,71,72,73,74,80,81,82,83,84}" ;;
3737
'pypy3.9') ENVS="pypy39-pytest{60,61,62,70,71,72,73,74,80,81,82,83,84}" ;;
3838
'3.10') ENVS="py310-pytest{70,71,72,73,74,80,81,82,83,84}" ;;
39-
'pypy3.10') ENVS="pypy310-pytest{70,71,72,73,74,80,81,82,83,84}" ;;
40-
'3.11') ENVS="py311-pytest{73,74,80,81,82,83,84}" ;;
41-
'pypy3.11') ENVS="pypy311-pytest{73,74,80,81,82,83,84}" ;;
42-
'3.12') ENVS="py312-pytest{74,80,81,82,83,84}" ;;
43-
'3.13') ENVS="py313-pytest{84}" ;;
44-
'3.14') ENVS="py314-pytest{84}" ;;
39+
'pypy3.10') ENVS="pypy310-pytest{70,71,72,73,74,80,81,82,83,84,90}" ;;
40+
'3.11') ENVS="py311-pytest{73,74,80,81,82,83,84,90}" ;;
41+
'pypy3.11') ENVS="pypy311-pytest{73,74,80,81,82,83,84,90}" ;;
42+
'3.12') ENVS="py312-pytest{74,80,81,82,83,84,90}" ;;
43+
'3.13') ENVS="py313-pytest{84,90}" ;;
44+
'3.14') ENVS="py314-pytest{84,90}" ;;
4545
*) echo "Unsupported python: ${{ matrix.python }}" ; exit 1 ;;
4646
esac
4747
uvx --from 'tox>=4.26,<5' tox run -x "tox.envlist=${ENVS}"
4848
4949
- name: Lint everything with Ruff
5050
if: matrix.python == '3.14'
51-
run: uvx --from 'tox>=4.31,<5' tox run -e lint
51+
run: uvx --from 'tox>=4.32,<5' tox run -e lint
5252

5353
- name: Ensure full coverage
5454
if: matrix.python == '3.14'
55-
run: uvx --from 'tox>=4.31,<5' tox run -e coverage
55+
run: uvx --from 'tox>=4.32,<5' tox run -e coverage
5656

5757
deploy:
5858
if: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pytest-describe"
3-
version = "3.0.0"
3+
version = "3.1.0"
44
description = "Describe-style plugin for pytest"
55
readme = "README.md"
66
requires-python = ">=3.9"

tox.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ commands = pytest test {posargs}
3636
basepython = python3.14
3737
package = skip
3838
deps =
39-
ruff>=0.6,<0.7
39+
ruff>=0.14,<0.15
4040
commands =
4141
ruff check src test
4242
ruff format --check src test
@@ -45,7 +45,7 @@ commands =
4545
basepython = python3.14
4646
package = skip
4747
deps =
48-
ruff>=0.6,<0.7
48+
ruff>=0.14,<0.15
4949
commands =
5050
ruff format src test
5151

@@ -57,5 +57,3 @@ deps =
5757
commands =
5858
coverage run -m pytest test {posargs}
5959
coverage report
60-
61-

0 commit comments

Comments
 (0)