Skip to content

Commit

Permalink
1.10.5 changelog + fixed one CI node
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylvain MARIE committed Mar 15, 2024
1 parent a587929 commit c2d7846
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

### 1.10.5 - pytest 8.1 compat

PR [#70](https://github.com/smarie/python-pytest-harvest/pull/70) to ensure pytest 8.1 compatibility, including:

- Fixed issue with `pytest>=8.1`: Fixed `AttributeError: 'str' object has no attribute 'iter_parents'`,
[#68](https://github.com/smarie/python-pytest-harvest/issues/68). Initial proposal in PR
[#67](https://github.com/smarie/python-pytest-harvest/pull/67) by [@larsoner](https://github.com/larsoner).
- Fixed issue with `pytest>=8.1`: Adapt to `getfixturedefs` signature change, initial proposal in PR
[#65](https://github.com/smarie/python-pytest-harvest/pull/65) by [@bluetech](https://github.com/bluetech).

Dropped support for pytest 2. Issue [#66](https://github.com/smarie/python-pytest-harvest/issues/66).

### 1.10.4 - python 3.5 xdist bugfix

- Fixed issue with `pytest-xdist` and python 3.5: `pathlib` objects were not properly handled by other stdlib modules in this python version. Fixed [#59](https://github.com/smarie/python-pytest-harvest/issues/59)
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
(PY38, "pytest7.x"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": "<8"}},
(PY38, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}},
# python 2.7
(PY27, "pytest3.x"): {"coverage": False, "pkg_specs": {"pip": ">10", "pytest": "<4", "pytest-asyncio": DONT_INSTALL}},
(PY27, "pytest3.x"): {"coverage": False, "pkg_specs": {"pip": ">10", "pytest": "<4", "pytest-cases": "<3.7", "pytest-asyncio": DONT_INSTALL}},
(PY27, "pytest4.x"): {"coverage": False, "pkg_specs": {"pip": ">10", "pytest": "<5", "pytest-cases": "<3.7", "pytest-asyncio": DONT_INSTALL}},
# python 3.5
(PY35, "pytest3.x"): {"coverage": False, "pkg_specs": {"pip": ">10", "pytest": "<4", "pytest-cases": "<3.7", "pytest-asyncio": DONT_INSTALL}},
Expand Down

0 comments on commit c2d7846

Please sign in to comment.