Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tech] Bump the non-major-dependencies group across 1 directory with 10 updates #3602

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Bumps the non-major-dependencies group with 10 updates in the /datascience directory:

Package From To
black 24.4.2 24.8.0
coverage 7.5.1 7.6.1
pre-commit 3.7.1 3.8.0
simplejson 3.19.2 3.19.3
geoalchemy2 0.14.7 0.15.2
rtree 1.2.0 1.3.0
pytest 8.2.1 8.3.2
weasyprint 62.1 62.3
css-inline 0.11.2 0.14.1
pypdf 4.2.0 4.3.1

Updates black from 24.4.2 to 24.8.0

Release notes

Sourced from black's releases.

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string (#4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (#4423)

Performance

  • Improve performance when a large directory is listed in .gitignore (#4415)

Blackd

  • Fix blackd (and all extras installs) for docker container (#4357)
Changelog

Sourced from black's changelog.

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string (#4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (#4423)

Performance

  • Improve performance when a large directory is listed in .gitignore (#4415)

Blackd

  • Fix blackd (and all extras installs) for docker container (#4357)
Commits
  • b965c2a Prepare release 24.8.0 (#4426)
  • 9ccf279 Document find_project_root ignoring pyproject.toml without [tool.black]...
  • 14b6e61 fix: Enhace black efficiently to skip directories listed in .gitignore (#4415)
  • b1c4dd9 fix: respect braces better in f-string parsing (#4422)
  • 4b4ae43 Fix incorrect linenos on fstring tokens with escaped newlines (#4423)
  • 7fa1faf docs: fix the installation command of extra for blackd (#4413)
  • 8827acc Bump sphinx from 7.3.7 to 7.4.0 in /docs (#4404)
  • b0da11d Bump furo from 2024.5.6 to 2024.7.18 in /docs (#4409)
  • 721dff5 fix: avoid formatting backslash strings inside f-strings (#4401)
  • 7e2afc9 Update actions/checkout to v4 to stop node deprecation warnings (#4379)
  • Additional commits viewable in compare view

Updates coverage from 7.5.1 to 7.6.1

Changelog

Sourced from coverage's changelog.

Version 7.6.1 — 2024-08-04

  • Fix: coverage used to fail when measuring code using :func:runpy.run_path <python:runpy.run_path> with a :class:Path <python:pathlib.Path> argument. This is now fixed, thanks to Ask Hjorth Larsen <pull 1819_>_.

  • Fix: backslashes preceding a multi-line backslashed string could confuse the HTML report. This is now fixed, thanks to LiuYinCarl <pull 1828_>_.

  • Now we publish wheels for Python 3.13, both regular and free-threaded.

.. _pull 1819: nedbat/coveragepy#1819 .. _pull 1828: nedbat/coveragepy#1828

.. _changes_7-6-0:

Version 7.6.0 — 2024-07-11

  • Exclusion patterns can now be multi-line, thanks to Daniel Diniz <pull 1807_>. This enables many interesting exclusion use-cases, including those requested in issues 118 <issue 118_> (entire files), 996 <issue 996_>_ (multiple lines only when appearing together), 1741 <issue 1741_>_ (remainder of a function), and 1803 <issue 1803_>_ (arbitrary sequence of marked lines). See the :ref:multi_line_exclude section of the docs for more details and examples.

  • The JSON report now includes per-function and per-class coverage information. Thanks to Daniel Diniz <pull 1809_>_ for getting the work started. This closes issue 1793_ and issue 1532_.

  • Fixed an incorrect calculation of "(no class)" lines in the HTML classes report.

  • Python 3.13.0b3 is supported.

.. _issue 118: nedbat/coveragepy#118 .. _issue 996: nedbat/coveragepy#996 .. _issue 1532: nedbat/coveragepy#1532 .. _issue 1741: nedbat/coveragepy#1741 .. _issue 1793: nedbat/coveragepy#1793 .. _issue 1803: nedbat/coveragepy#1803 .. _pull 1807: nedbat/coveragepy#1807 .. _pull 1809: nedbat/coveragepy#1809

.. _changes_7-5-4:

Version 7.5.4 — 2024-06-22

... (truncated)

Commits
  • 29f5898 docs: sample HTML for 7.6.1
  • 9b829f1 docs: prep for 7.6.1
  • ebbb6a2 build: wheels for 3.13rc1
  • 3872525 chore: make upgrade
  • 7a27f40 test: fix a test on free-threading, use abiflags to get site-packages path co...
  • 2b53664 build: include gil/nogil in the version banner
  • da1682f docs: changelog and contributor for #1828
  • dc819ff test: two tests for #1828
  • 9aaa404 fix: properly handle backslash before multi-line string (#1828)
  • 9c50270 chore: make upgrade
  • Additional commits viewable in compare view

Updates pre-commit from 3.7.1 to 3.8.0

Release notes

Sourced from pre-commit's releases.

pre-commit v3.8.0

Features

Changelog

Sourced from pre-commit's changelog.

3.8.0 - 2024-07-28

Features

Commits
  • d46423f v3.8.0
  • 8133abd Merge pull request #3265 from lorenzwalthert/issue-3206
  • da0c1d0 implement health check for language:r
  • f641f6a Merge pull request #3264 from pre-commit/pre-commit-ci-update-config
  • a68a19d fixes for mypy 1.11
  • 88317dd [pre-commit.ci] pre-commit autoupdate
  • faa6f8c Merge pull request #3244 from pre-commit/pre-commit-ci-update-config
  • f632459 [pre-commit.ci] pre-commit autoupdate
  • 0252908 Merge pull request #3240 from pre-commit/pre-commit-ci-update-config
  • 69b5dce [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates simplejson from 3.19.2 to 3.19.3

Release notes

Sourced from simplejson's releases.

v3.19.3

Version 3.19.3 released 2024-08-14

  • Updated test & build matrix to include Python 3.13. Dropped wheel support for Python 2.7 on macOS. simplejson/simplejson#326
Changelog

Sourced from simplejson's changelog.

Version 3.19.3 released 2024-08-14

  • Updated test & build matrix to include Python 3.13. Dropped wheel support for Python 2.7 on macOS. simplejson/simplejson#326

Version 3.19.2 released 2023-10-05

  • Updated test & build matrix to include Python 3.12 and use GitHub Actions as a Trusted Publisher (OIDC) simplejson/simplejson#317

Version 3.19.1 released 2023-04-06

  • This release contains security hardening measures based on recommendations by a security audit sponsored by OSTIF and conducted by X41 D-Sec GmbH. Several of these measures include changing defaults to be more strict, by default simplejson will now only consume and produce compliant JSON, but the flags still exist for any backwards compatibility needs. No high priority issues were discovered, the reference count leak is thought to be unreachable since the digits of the float are checked before PyOS_string_to_double is called. A link to the public version of this report will be included in a future release of simplejson. The following fixes were implemented in one PR: simplejson/simplejson#313
  • Fix invalid handling of unicode escape sequences in the pure Python implementation of the decoder (SJ-PT-23-01)
  • Fix missing reference count decrease if PyOS_string_to_double raises an exception in Python 2.x; was probably unreachable (SJ-PT-23-02)
  • Backport the integer string length limitation from Python 3.11 to limit quadratic number parsing (SJ-PT-23-03)
  • Fix inconsistencies with error messages between the C and Python implementations (SJ-PT-23-100)
  • Remove unused unichr import from encoder (SJ-PT-23-101)
  • Remove unused namedtuple_as_object and tuple_as_array arguments from simplejson.load (SJ-PT-23-102)
  • Remove vestigial _one_shot code from iterencode (SJ-PT-23-103)
  • Change default of allow_nan from True to False and add allow_nan to decoder (SJ-PT-23-107)

Version 3.18.4 released 2023-03-14

Version 3.18.3 released 2023-02-05

  • Fix regression in sdist archive

... (truncated)

Commits

Updates geoalchemy2 from 0.14.7 to 0.15.2

Release notes

Sourced from geoalchemy2's releases.

0.15.2

What's Changed

Full Changelog: geoalchemy/geoalchemy2@0.15.1...0.15.2

0.15.1

What's Changed

New Contributors

Full Changelog: geoalchemy/geoalchemy2@0.15.0...0.15.1

0.15.0

What's Changed

New Contributors

Full Changelog: geoalchemy/geoalchemy2@0.14.7...0.15.0

Changelog

Sourced from geoalchemy2's changelog.

0.15.2

0.15.1

0.15.0

Commits

Updates rtree from 1.2.0 to 1.3.0

Release notes

Sourced from rtree's releases.

1.3.0

  • Upgrade binary wheels with libspatialindex-2.0.0 (#316)
  • Fix binary wheels for musllinux (#316)
  • Update code style, replace isort and black with ruff, modern numpy rng (#319)
  • Remove libsidx version testing (#313)
Changelog

Sourced from rtree's changelog.

1.3.0: 2024-07-10

  • Upgrade binary wheels with libspatialindex-2.0.0 (:PR:316)
  • Fix binary wheels for musllinux wheels (:PR:316)
  • Update code style, replace isort and black with ruff, modern numpy rng (:PR:319)
  • Remove libsidx version testing (:PR:313)
Commits
  • cffb52e Release 1.3.0 (#320)
  • 86d4e28 CI/RLS: upgrade to libspatialindex-2.0.0 (#316)
  • bb9925a Update code style, replace isort and black with ruff, modern numpy rng (#319)
  • 1b81733 Bump pypa/cibuildwheel from 2.19.1 to 2.19.2 (#318)
  • ffd63b5 Merge pull request #317 from Toblerity/dependabot/github_actions/pypa/cibuild...
  • c121c66 Bump pypa/cibuildwheel from 2.18.1 to 2.19.1
  • 6248b6f Merge pull request #314 from Toblerity/dependabot/github_actions/pypa/cibuild...
  • 3f2605b Bump pypa/cibuildwheel from 2.18.0 to 2.18.1
  • 9a08ab9 drop version testing. not valuable (#313)
  • d91f409 Merge pull request #310 from Toblerity/dependabot/github_actions/pypa/cibuild...
  • Additional commits viewable in compare view

Updates pytest from 8.2.1 to 8.3.2

Release notes

Sourced from pytest's releases.

8.3.2

pytest 8.3.2 (2024-07-24)

Bug fixes

  • #12652: Resolve regression [conda]{.title-ref} environments where no longer being automatically detected.

    -- by RonnyPfannschmidt{.interpreted-text role="user"}

8.3.1

pytest 8.3.1 (2024-07-20)

The 8.3.0 release failed to include the change notes and docs for the release. This patch release remedies this. There are no other changes.

8.3.0

pytest 8.3.0 (2024-07-20)

New features

  • #12231: Added [--xfail-tb]{.title-ref} flag, which turns on traceback output for XFAIL results.

    • If the [--xfail-tb]{.title-ref} flag is not given, tracebacks for XFAIL results are NOT shown.
    • The style of traceback for XFAIL is set with [--tb]{.title-ref}, and can be [auto|long|short|line|native|no]{.title-ref}.
    • Note: Even if you have [--xfail-tb]{.title-ref} set, you won't see them if [--tb=no]{.title-ref}.

    Some history:

    With pytest 8.0, [-rx]{.title-ref} or [-ra]{.title-ref} would not only turn on summary reports for xfail, but also report the tracebacks for xfail results. This caused issues with some projects that utilize xfail, but don't want to see all of the xfail tracebacks.

    This change detaches xfail tracebacks from [-rx]{.title-ref}, and now we turn on xfail tracebacks with [--xfail-tb]{.title-ref}. With this, the default [-rx]{.title-ref}/ [-ra]{.title-ref} behavior is identical to pre-8.0 with respect to xfail tracebacks. While this is a behavior change, it brings default behavior back to pre-8.0.0 behavior, which ultimately was considered the better course of action.

  • #12281: Added support for keyword matching in marker expressions.

    Now tests can be selected by marker keyword arguments. Supported values are int{.interpreted-text role="class"}, (unescaped) str{.interpreted-text role="class"}, bool{.interpreted-text role="class"} & None{.interpreted-text role="data"}.

    See marker examples <marker_keyword_expression_example>{.interpreted-text role="ref"} for more information.

    -- by lovetheguitar{.interpreted-text role="user"}

  • #12567: Added --no-fold-skipped command line option.

    If this option is set, then skipped tests in short summary are no longer grouped by reason but all tests are printed individually with their nodeid in the same way as other statuses.

    -- by pbrezina{.interpreted-text role="user"}

... (truncated)

Commits
  • bbcec9c Prepare release version 8.3.2
  • 78fe8b6 Merge pull request #12657 from pytest-dev/patchback/backports/8.3.x/6c806b499...
  • 238bad2 Merge pull request #12656 from RonnyPfannschmidt/fix-12652-detect-conda-env
  • ae6034a Merge pull request #12641 from pytest-dev/patchback/backports/8.3.x/c03989cee...
  • 31337ab Merge pull request #12640 from pytest-dev/update-user
  • ca3070b Merge pull request #12637 from pytest-dev/release-8.3.1
  • de98446 Prepare release version 8.3.1
  • bd0a042 Merge pull request #12636 from pytest-dev/update-release-notes
  • 664325b doc/changelog: update 8.3.0 notes
  • 19d225d Merge pull request #12635 from pytest-dev/release-8.3.0
  • Additional commits viewable in compare view

Updates weasyprint from 62.1 to 62.3

Release notes

Sourced from weasyprint's releases.

v62.3

Bug fixes

  • #2174: Fix extra width distribution for auto table layout
  • #2175: Don’t compress PDF metadata for PDF/A-1
  • 61f8bb3: Set default PDF variant values in options before generating PDF
  • 2c4351e: Avoid PDF artifacts when drawing 0-width borders
  • d9d7f62: Don’t duplicate column when container is split on multiple pages
  • 4617b94: Don’t set default Fontconfig values for unset properties
  • 4c81663: Fix layout when all footnotes are removed from the footnote area
  • #2184: Make items overflowing grid wrap to the next row/column
  • #2187: Don’t append useless tracks when grid elements are positioned

Contributors

  • Guillaume Ayoub

Backers and sponsors

  • Spacinov
  • Kobalt
  • Grip Angebotssoftware
  • Manuel Barkhau
  • SimonSoft
  • Menutech
  • KontextWork
  • Simon Sapin
  • René Fritz
  • TrainingSparkle
  • Healthchecks.io
  • Hammerbacher
  • Docraptor
  • Yanal-Yvez Fargialla
  • Douwe van Loenen
  • Morntag
  • Xavid

v62.2

Features

  • #2142, #2162: Support grid-auto-flow: column, with financial support from Menutech

Bug fixes

  • #2167: Fix space added by CSS gap at the end
  • #2134: Remove absolute placeholders from discarded content
  • #2154: Don’t crash when grid items have auto margins
  • 8cdd66f: Fix CSS nesting for nested selectors with comma
  • 3359db5: Fix and test grid shorthand
  • 82deda4: Fix wrong resume_at for split floats

... (truncated)

Changelog

Sourced from weasyprint's changelog.

Version 62.3

Released on 2024-06-21.

Bug fixes:

  • [#2174](https://github.com/Kozea/WeasyPrint/issues/2174) <https://github.com/Kozea/WeasyPrint/issues/2174>_: Fix extra width distribution for auto table layout
  • [#2175](https://github.com/Kozea/WeasyPrint/issues/2175) <https://github.com/Kozea/WeasyPrint/issues/2175>_: Don’t compress PDF metadata for PDF/A-1
  • 61f8bb3 <https://github.com/Kozea/WeasyPrint/commit/61f8bb3>_: Set default PDF variant values in options before generating PDF
  • 2c4351e <https://github.com/Kozea/WeasyPrint/commit/2c4351e>_: Avoid PDF artifacts when drawing 0-width borders
  • d9d7f62 <https://github.com/Kozea/WeasyPrint/commit/d9d7f62>_: Don’t duplicate column when container is split on multiple pages
  • 4617b94 <https://github.com/Kozea/WeasyPrint/commit/4617b94>_: Don’t set default Fontconfig values for unset properties
  • 4c81663 <https://github.com/Kozea/WeasyPrint/commit/4c81663>_: Fix layout when all footnotes are removed from the footnote area
  • [#2184](https://github.com/Kozea/WeasyPrint/issues/2184) <https://github.com/Kozea/WeasyPrint/issues/2184>_: Make items overflowing grid wrap to the next row/column
  • [#2187](https://github.com/Kozea/WeasyPrint/issues/2187) <https://github.com/Kozea/WeasyPrint/issues/2187>_: Don’t append useless tracks when grid elements are positioned

Contributors:

  • Guillaume Ayoub

Backers and sponsors:

  • Spacinov
  • Kobalt
  • Grip Angebotssoftware
  • Manuel Barkhau
  • SimonSoft
  • Menutech
  • KontextWork
  • Simon Sapin
  • René Fritz
  • TrainingSparkle
  • Healthchecks.io
  • Hammerbacher
  • Docraptor
  • Yanal-Yvez Fargialla
  • Douwe van Loenen
  • Morntag
  • Xavid

... (truncated)

Commits
  • 56acbc4 Version 62.3
  • f39039b Remove useless variable
  • 39208b0 Don’t append useless tracks when grid elements are positioned
  • fb9d1f8 Make items overflowing grid wrap to the next row/column
  • 4c81663 Fix layout when all footnotes are removed from the footnote area
  • 4617b94 Don’t set default Fontconfig values for unset properties
  • d9d7f62 Don’t duplicate column when container is split on multiple pages
  • 9e9f690 Simplify border drawing
  • 2c4351e Avoid PDF artifacts when drawing 0-width borders
  • 61f8bb3 Set default PDF variant values in options before generating PDF
  • Additional commits viewable in compare view

Updates css-inline from 0.11.2 to 0.14.1

Release notes

Sourced from css-inline's releases.

[C] Release 0.14.1

Fixed

  • Precedence of element styles over other styles. #364

[JavaScript] Release 0.14.1

Fixed

  • Precedence of element styles over other styles. #364

[Python] Release 0.14.1

Fixed

  • Precedence of element styles over other styles. #364

[Ruby] Release 0.14.1

Fixed

  • Precedence of element styles over other styles. #364

[Rust] Release 0.14.1

Fixed

  • Precedence of element styles over other styles. #364

[C] Release 0.14.0

Added

  • External stylesheet caching. #314
  • Inlining to HTML fragments. #335

Changed

  • Update html5ever to 0.27.

[JavaScript] Release 0.14.0

Added

  • External stylesheet caching. #314
  • Inlining to HTML fragments. #335

[Python] Release 0.14.0

Added

  • External stylesheet caching. #314
  • Inlining to HTML fragments. #335

Changed

  • Update html5ever to 0.27.

... (truncated)

Changelog

Sourced from css-inline's changelog.

[0.14.1] - 2024-04-27

Fixed

  • Precedence of element styles over other styles. #364

[0.14.0] - 2024-04-01

Added

  • External stylesheet caching. #314
  • Inlining to HTML fragments. #335

Changed

  • Update html5ever to 0.27.
  • Update rayon to 1.10.

[0.13.0] - 2024-01-19

Added

  • A way to customize resolving remote stylesheets.
  • Support for the data-css-inline="keep" attribute to enforce keeping the style tag.

Changed

  • Replace attohttpc with reqwest to simplify implementing non-blocking stylesheet resolving in the future release.

Fixed

  • Lookups for previous / next siblings, affecting selectors like nth-child. #324

Performance

  • Avoid using binary search on attributes.

[0.12.0] - 2023-12-28

Changed

  • Display stylesheet location in network-related errors.
  • Implement std::error::Error::source for InlineError.

Performance

  • Optimize serialization of attributes and text nodes.
Commits
  • 6fa72ec chore(c): Release 0.14.1
  • 12e8b84 fix: Precedence of element styles over other styles
  • 0106bc8 build: Update builds
  • 53f62f0 build(deps): bump tar from 6.2.0 to 6.2.1 in /bindings/javascript
  • d503fe9 build(deps): bump idna from 3.4 to 3.7 in /bindings/python/requirements
  • 1cc5fd0 chore: remove unused annotations
  • 8d7479b build(deps): update pyo3-built requirement in /bindings/python
  • 1ed7a42 chore(javascript): Update bundled WASM module
  • fc62385 chore(javascript): Release 0.14.0
  • 2c972df chore(python): Release 0.14.0
  • Additional commits viewable in compare view

Updates pypdf from 4.2.0 to 4.3.1

Release notes

Sourced from pypdf's releases.

Version 4.3.1, 2024-07-21

Bug Fixes (BUG)

  • Cope with Matrix entry in field annotations (#2736)

Robustness (ROB)

  • Cope with fields with upside down box/rectangle (#2729)

Maintenance (MAINT)

  • Add deprecate_with_replacement to StreamObject.initializeFromD… (#2728)
  • Deal with cryptography>=43 moving ARC4 (#2765)

Full Changelog

Version 4.3.0, 2024-07-14

What's new

New Features (ENH)

Bug Fixes (BUG)

Documentation (DOC)

  • Various improvements on docstrings and examples by @​j-t-1

Robustness (ROB)

Maintenance (MAINT)

  • Deprecate interiour_color with replacement interior_color (#2706) by @​j-t-1
  • Add deprecate_with_replacement to PdfWriter.find_bookmark (#2674) by @​j-t-1

Code Style (STY)

Full Changelog

Changelog

Sourced from pypdf's changelog.

Version 4.3.1, 2024-07-21

Bug Fixes (BUG)

  • Cope with Matrix entry in field annotations (#2736)

Robustness (ROB)

  • Cope with fields with upside down box/rectangle (#2729)

Maintenance (MAINT)

  • Add deprecate_with_replacement to StreamObject.initializeFromD… (#2728)
  • Deal with cryptography>=43 moving ARC4 (#2765)

Full Changelog

Version 4.3.0, 2024-06-23

New Features (ENH)

  • Accept ETen-B5 and UniCNS-UTF16 encodings (#2721)
  • Add decode_as_image() to ContentStreams (#2615)
  • context manager for PdfReader (#2666)
  • Add capability to set font and size in fields (#2636)
  • Allow to pass input file without named argument (#2576)

Bug Fixes (BUG)

  • Fix deprecation for Ressources when using old constants (#2705)
  • Fix images issue 4 bits encoding and LUT starting with UTF16_BOM (#2675)
  • Reading large compressed images takes huge time to process (#2644)
  • Highlighted Text Cannot Be Printed (#2604)
  • Fix UnboundLocalError on malformed pdf (#2619)

Robustness (ROB)

  • Cope with missing Standard 14 fonts in fields (#2677)
  • Improve inline image extraction (#2622)
  • Cope with loops in Fields tree (#2656)
  • Discard /I in choice fields for compatibility with Acrobat (#2614)
  • Cope with some issues in pillow (#2595)
  • Cope with some image extraction issues (#2591)

Documentation (DOC)

  • Various improvements on docstrings and examples

Maintenance (MAINT)

  • Deprecate interiour_color with replacement interior_color (#2706)
  • Add deprecate_with_replacement to PdfWriter.find_bookmark (#2674)

Code Style (STY)

  • Change Link to be a non-markup annotation (#2714)

Full Changelog

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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 con...

Description has been truncated

…10 updates

Bumps the non-major-dependencies group with 10 updates in the /datascience directory:

| Package | From | To |
| --- | --- | --- |
| [black](https://github.com/psf/black) | `24.4.2` | `24.8.0` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.5.1` | `7.6.1` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.7.1` | `3.8.0` |
| [simplejson](https://github.com/simplejson/simplejson) | `3.19.2` | `3.19.3` |
| [geoalchemy2](https://github.com/geoalchemy/geoalchemy2) | `0.14.7` | `0.15.2` |
| [rtree](https://github.com/Toblerity/rtree) | `1.2.0` | `1.3.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.1` | `8.3.2` |
| [weasyprint](https://github.com/Kozea/WeasyPrint) | `62.1` | `62.3` |
| [css-inline](https://github.com/Stranger6667/css-inline) | `0.11.2` | `0.14.1` |
| [pypdf](https://github.com/py-pdf/pypdf) | `4.2.0` | `4.3.1` |



Updates `black` from 24.4.2 to 24.8.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@24.4.2...24.8.0)

Updates `coverage` from 7.5.1 to 7.6.1
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.5.1...7.6.1)

Updates `pre-commit` from 3.7.1 to 3.8.0
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.7.1...v3.8.0)

Updates `simplejson` from 3.19.2 to 3.19.3
- [Release notes](https://github.com/simplejson/simplejson/releases)
- [Changelog](https://github.com/simplejson/simplejson/blob/master/CHANGES.txt)
- [Commits](simplejson/simplejson@v3.19.2...v3.19.3)

Updates `geoalchemy2` from 0.14.7 to 0.15.2
- [Release notes](https://github.com/geoalchemy/geoalchemy2/releases)
- [Changelog](https://github.com/geoalchemy/geoalchemy2/blob/master/CHANGES.txt)
- [Commits](geoalchemy/geoalchemy2@0.14.7...0.15.2)

Updates `rtree` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/Toblerity/rtree/releases)
- [Changelog](https://github.com/Toblerity/rtree/blob/master/CHANGES.rst)
- [Commits](Toblerity/rtree@1.2.0...1.3.0)

Updates `pytest` from 8.2.1 to 8.3.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.2.1...8.3.2)

Updates `weasyprint` from 62.1 to 62.3
- [Release notes](https://github.com/Kozea/WeasyPrint/releases)
- [Changelog](https://github.com/Kozea/WeasyPrint/blob/main/docs/changelog.rst)
- [Commits](Kozea/WeasyPrint@v62.1...v62.3)

Updates `css-inline` from 0.11.2 to 0.14.1
- [Release notes](https://github.com/Stranger6667/css-inline/releases)
- [Changelog](https://github.com/Stranger6667/css-inline/blob/master/CHANGELOG.md)
- [Commits](Stranger6667/css-inline@ruby-v0.11.2...c-v0.14.1)

Updates `pypdf` from 4.2.0 to 4.3.1
- [Release notes](https://github.com/py-pdf/pypdf/releases)
- [Changelog](https://github.com/py-pdf/pypdf/blob/main/CHANGELOG.md)
- [Commits](py-pdf/pypdf@4.2.0...4.3.1)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: coverage
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: pre-commit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: simplejson
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: geoalchemy2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: rtree
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: weasyprint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: css-inline
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: pypdf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file tech. enhancement technical ehancement labels Sep 1, 2024
Copy link

sonarcloud bot commented Sep 1, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file tech. enhancement technical ehancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant