flask-sqlalchemy
flask-sqlalchemy copied to clipboard
Bump the python-requirements group in /requirements with 4 updates
Bumps the python-requirements group in /requirements with 4 updates: sphinx-issues, coverage[toml], pytest and tox.
Updates sphinx-issues from 3.0.1 to 4.0.0
Commits
Updates coverage[toml] from 7.3.1 to 7.4.1
Release notes
Sourced from coverage[toml]'s releases.
7.4.1
- Python 3.13.0a3 is supported.
- Fix: the JSON report now includes an explicit format version number, closing issue 1732.
:arrow_right: PyPI page: coverage 7.4.1. :arrow_right: To install:
python3 -m pip install coverage==7.4.17.4.0
- In Python 3.12 and above, you can try an experimental core based on the new
sys.monitoring <python:sys.monitoring>module by defining aCOVERAGE_CORE=sysmonenvironment variable. This should be faster for line coverage, but not for branch coverage, and plugins and dynamic contexts are not yet supported with it. I am very interested to hear how it works (or doesn't!) for you.:arrow_right: PyPI page: coverage 7.4.0. :arrow_right: To install:
python3 -m pip install coverage==7.4.07.3.4
- Fix: the change for multi-line signature exclusions in 7.3.3 broke other forms of nested clauses being excluded properly. This is now fixed, closing issue 1713.
- Fix: in the HTML report, selecting code for copying won't select the line numbers also. Thanks, Robert Harris.
:arrow_right: PyPI page: coverage 7.3.4. :arrow_right: To install:
python3 -m pip install coverage==7.3.47.3.3
- Fix: function definitions with multi-line signatures can now be excluded by matching any of the lines, closing issue 684. Thanks, Jan Rusak, Maciej Kowalczyk and Joanna Ejzel.
- Fix: XML reports could fail with a TypeError if files had numeric components that were duplicates except for leading zeroes, like
file1.pyandfile001.py. Fixes issue 1709.- The
coverage annotatecommand used to announce that it would be removed in a future version. Enough people got in touch to say that they use it, so it will stay. Don't expect it to keep up with other new features though.- Added new
debug options <cmd_run_debug>:
pytestwrites the pytest test name into the debug output.dataop2writes the full data being added to CoverageData objects.:arrow_right: PyPI page: coverage 7.3.3. :arrow_right: To install:
python3 -m pip install coverage==7.3.37.3.2
- The
coverage lcovcommand ignored the[report] exclude_linesand[report] exclude_alsosettings (issue 1684). This is now fixed, thanks Jacqueline Lee.- Sometimes SQLite will create journal files alongside the coverage.py database files. These are ephemeral, but could be mistakenly included when combining data files. Now they are always ignored, fixing issue 1605. Thanks to Brad Smith for suggesting fixes and providing detailed debugging.
- On Python 3.12+, we now disable SQLite writing journal files, which should be a little faster.
- The new 3.12 soft keyword
typeis properly bolded in HTML reports.- Removed the "fullcoverage" feature used by CPython to measure the coverage of early-imported standard library modules. CPython stopped using it in 2021, and it stopped working completely in Python 3.13.
:arrow_right: PyPI page: coverage 7.3.2. :arrow_right: To install:
python3 -m pip install coverage==7.3.2
Changelog
Sourced from coverage[toml]'s changelog.
Version 7.4.1 — 2024-01-26
Python 3.13.0a3 is supported.
Fix: the JSON report now includes an explicit format version number, closing
issue 1732_... _issue 1732: nedbat/coveragepy#1732
.. _changes_7-4-0:
Version 7.4.0 — 2023-12-27
- In Python 3.12 and above, you can try an experimental core based on the new :mod:
sys.monitoring <python:sys.monitoring>module by defining aCOVERAGE_CORE=sysmonenvironment variable. This should be faster for line coverage, but not for branch coverage, and plugins and dynamic contexts are not yet supported with it. I am very interested to hear how it works (or doesn't!) for you... _changes_7-3-4:
Version 7.3.4 — 2023-12-20
Fix: the change for multi-line signature exclusions in 7.3.3 broke other forms of nested clauses being excluded properly. This is now fixed, closing
issue 1713_.Fix: in the HTML report, selecting code for copying won't select the line numbers also. Thanks,
Robert Harris <pull 1717_>_... _issue 1713: nedbat/coveragepy#1713 .. _pull 1717: nedbat/coveragepy#1717
.. _changes_7-3-3:
Version 7.3.3 — 2023-12-14
Fix: function definitions with multi-line signatures can now be excluded by matching any of the lines, closing
issue 684. Thanks,Jan Rusak, Maciej Kowalczyk and Joanna Ejzel <pull 1705_>.Fix: XML reports could fail with a TypeError if files had numeric components
... (truncated)
Commits
07588eatest: give hypothesis a little more time2c96518build: tags should be signed8d1857fdocs: sample HTML for 7.4.1ddc88f7docs: prep for 7.4.198cd671docs: correct two library urls498b8c9build: coverage runs have to skip windows pypy too75b22f0test: ignore color in tracebacksb7c41a2build: show action environment variables for debuggingf8be865build: run actions on 3.13 since a3 came out.de60a6dbuild(deps): bump actions/dependency-review-action from 3 to 4- Additional commits viewable in compare view
Updates pytest from 7.4.4 to 8.0.0
Release notes
Sourced from pytest's releases.
pytest 8.0.0 (2024-01-27)
See 8.0.0rc1 and 8.0.0rc2 for the full changes since pytest 7.4!
Bug Fixes
- #11842: Properly escape the
reasonof askip <pytest.mark.skip ref>{.interpreted-text role="ref"} mark when writing JUnit XML files.- #11861: Avoid microsecond exceeds
1_000_000when usinglog-date-formatwith%fspecifier, which might cause the test suite to crash.8.0.0rc2
pytest 8.0.0rc2 (2024-01-17)
Improvements
- #11233: Improvements to
-rfor xfailures and xpasses:
- Report tracebacks for xfailures when
-rxis set.- Report captured output for xpasses when
-rXis set.- For xpasses, add
-in summary between test name and reason, to match how xfail is displayed.- #11825: The
pytest_plugin_registered{.interpreted-text role="hook"} hook has a newplugin_nameparameter containing the name by whichpluginis registered.Bug Fixes
#11706: Fix reporting of teardown errors in higher-scoped fixtures when using [--maxfail]{.title-ref} or [--stepwise]{.title-ref}.
#11758: Fixed
IndexError: string index out of rangecrash inif highlighted[-1] == "\n" and source[-1] != "\n". This bug was introduced in pytest 8.0.0rc1.#9765, #11816: Fixed a frustrating bug that afflicted some users with the only error being
assert mod not in mods. The issue was caused by the fact thatstr(Path(mod))andmod.__file__don't necessarily produce the same string, and was being erroneously used interchangably in some places in the code.This fix also broke the internal API of
PytestPluginManager.consider_conftestby introducing a new parameter -- we mention this in case it is being used by external code, even if marked as private.pytest 8.0.0rc1 (2023-12-30)
See https://docs.pytest.org/en/latest/changelog.html#pytest-8-0-0rc1-2023-12-30 for the rendered changelog.
Breaking Changes
Old Deprecations Are Now Errors
#7363: PytestRemovedIn8Warning deprecation warnings are now errors by default.
Following our plan to remove deprecated features with as little disruption as possible, all warnings of type
PytestRemovedIn8Warningnow generate errors instead of warning messages by default.The affected features will be effectively removed in pytest 8.1, so please consult the
deprecations{.interpreted-text role="ref"} section in the docs for directions on how to update existing code.In the pytest
8.0.Xseries, it is possible to change the errors back into warnings as a stopgap measure by adding this to yourpytest.inifile:[pytest]
... (truncated)
Commits
478f823Prepare release version 8.0.06085900[8.0.x] fix: avoid rounding microsecond to1_000_000(#11863)3b41c65[8.0.x] Escape skip reason in junitxml (#11845)747072a[8.0.x] Update docstring of scripts/generate-gh-release-notes.py (#11768)011a475Properly attach packages to the GH release notes (#11839) (#11840)97960bdMerge pull request #11835 from pytest-dev/release-8.0.0rc26be0a3cPrepare release version 8.0.0rc244ffe07Merge pull request #11837 from pytest-dev/backport-11836-to-8.0.x14ecb04[8.0.x] testing: temporarily disable test due to hypothesis issue41c8dabMerge pull request #11831 from bluetech/backport-11825-to-8.0.x- Additional commits viewable in compare view
Updates tox from 4.12.0 to 4.12.1
Release notes
Sourced from tox's releases.
4.12.1
What's Changed
- Fix tox version requirement in docs by
@Viicosin tox-dev/tox#3184- #3165 fixed Tox failing with --installpkg and multi testenvs by
@Stefanhgin tox-dev/tox#3186New Contributors
@Viicosmade their first contribution in tox-dev/tox#3184Full Changelog: https://github.com/tox-dev/tox/compare/4.12.0...4.12.1
Changelog
Sourced from tox's changelog.
v4.12.1 (2024-01-16)
Bugfixes - 4.12.1
- Fixed bug where running with --installpkg and multiple envs could not clean up between tests (:issue:`3165`)
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions