Skip to content

Commit 30ba3f7

Browse files
authored
Merge pull request #638 from pytest-dev/ab/py312
Update project libs & bump v7.0.0
2 parents f1c49c3 + 3f424e7 commit 30ba3f7

File tree

5 files changed

+177
-175
lines changed

5 files changed

+177
-175
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
toxfactor: py3.11
2828
ignore-typecheck-outcome: true
2929
ignore-test-outcome: false
30-
- python-version: "3.12-dev"
30+
- python-version: "3.12"
3131
toxfactor: py3.12
3232
ignore-typecheck-outcome: true
3333
ignore-test-outcome: false
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Install poetry
4545
run: |
46-
python -m pip install poetry==1.5.1
46+
python -m pip install poetry==1.6.1
4747
4848
- name: Configure poetry
4949
run: |
@@ -79,7 +79,7 @@ jobs:
7979
8080
- uses: codecov/codecov-action@v3
8181
with:
82-
# Explicitly using the token in order to avoid Codecov rate limit errors
82+
# Explicitly using the token to avoid Codecov rate limit errors
8383
# See https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954
8484
token: ${{ secrets.CODECOV_TOKEN }}
8585
fail_ci_if_error: true

CHANGES.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ Changelog
33

44
Unreleased
55
----------
6+
7+
7.0.0
8+
----------
9+
- ⚠️ Backwards incompatible: - ``parsers.re`` now does a `fullmatch <https://docs.python.org/3/library/re.html#re.fullmatch>`_ instead of a partial match. This is to make it work just like the other parsers, since they don't ignore non-matching characters at the end of the string. `#539 <https://github.com/pytest-dev/pytest-bdd/pull/539>`_
610
- Drop python 3.7 compatibility, as it's no longer supported. `#627 <https://github.com/pytest-dev/pytest-bdd/pull/627>`_
7-
- Declare support for python 3.12 `#628 <https://github.com/pytest-dev/pytest-bdd/pull/628>`_
11+
- Declare official support for python 3.12 `#628 <https://github.com/pytest-dev/pytest-bdd/pull/628>`_
812
- Improve parser performance by 15% `#623 <https://github.com/pytest-dev/pytest-bdd/pull/623>`_ by `@dcendents <https://github.com/dcendents>`_
9-
- ⚠️ Backwards incompatible: - ``parsers.re`` now does a `fullmatch <https://docs.python.org/3/library/re.html#re.fullmatch>`_ instead of a partial match. This is to make it work just like the other parsers, since they don't ignore non-matching characters at the end of the string. `#539 <https://github.com/pytest-dev/pytest-bdd/pull/539>`_
1013
- Add support for Scenarios and Scenario Outlines to have descriptions. `#600 <https://github.com/pytest-dev/pytest-bdd/pull/600>`_
1114

1215
6.1.1

0 commit comments

Comments
 (0)