Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 14, 2025

Bumps the minor group with 6 updates:

Package From To
flake8 7.1.1 7.2.0
markdown 3.7 3.8
mypy 1.14.1 1.15.0
types-markdown 3.7.0.20241204 3.8.0.20250413
hypothesis 6.124.9 6.131.0
setuptools-scm[toml] 8.1.0 8.2.0

Updates flake8 from 7.1.1 to 7.2.0

Commits
  • 16f5f28 Release 7.2.0
  • ebad305 Merge pull request #1974 from PyCQA/update-plugins
  • d56d569 update versions of pycodestyle / pyflakes
  • a7e8f62 Merge pull request #1973 from PyCQA/py39-plus
  • 9d55ccd py39+
  • e492aeb Merge pull request #1967 from PyCQA/unnecessary-mocks
  • fa2ed71 remove a few unnecessary mocks in test_checker_manager
  • fffee8b Release 7.1.2
  • 19001f7 Merge pull request #1966 from PyCQA/limit-procs-to-file-count
  • f35737a avoid starting unnecessary processes when file count is limited
  • See full diff in compare view

Updates markdown from 3.7 to 3.8

Release notes

Sourced from markdown's releases.

Release 3.8

Changed

  • DRY fix in abbr extension by introducing method create_element (#1483).
  • Clean up test directory by removing some redundant tests and port non-redundant cases to the newer test framework.
  • Improved performance of the raw HTML post-processor (#1510).

Fixed

  • Backslash Unescape IDs set via attr_list on toc (#1493).
  • Ensure md_in_html processes content inside "markdown" blocks as they are parsed outside of "markdown" blocks to keep things more consistent for third-party extensions (#1503).
  • md_in_html handle tags within inline code blocks better (#1075).
  • md_in_html fix handling of one-liner block HTML handling (#1074).
  • Ensure <center> is treated like a block-level element (#1481).
  • Ensure that abbr extension respects AtomicString and does not process perceived abbreviations in these strings (#1512).
  • Ensure smarty extension correctly renders nested closing quotes (#1514).
Changelog

Sourced from markdown's changelog.

title: Changelog toc_depth: 2

Python-Markdown Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning. See the Contributing Guide for details.

[3.8.0] - 2025-04-09

Changed

  • DRY fix in abbr extension by introducing method create_element (#1483).
  • Clean up test directory by removing some redundant tests and port non-redundant cases to the newer test framework.
  • Improved performance of the raw HTML post-processor (#1510).

Fixed

  • Backslash Unescape IDs set via attr_list on toc (#1493).
  • Ensure md_in_html processes content inside "markdown" blocks as they are parsed outside of "markdown" blocks to keep things more consistent for third-party extensions (#1503).
  • md_in_html handle tags within inline code blocks better (#1075).
  • md_in_html fix handling of one-liner block HTML handling (#1074).
  • Ensure <center> is treated like a block-level element (#1481).
  • Ensure that abbr extension respects AtomicString and does not process perceived abbreviations in these strings (#1512).
  • Ensure smarty extension correctly renders nested closing quotes (#1514).

[3.7.0] - 2024-08-16

Changed

  • Refactor abbr Extension

    A new AbbrTreeprocessor has been introduced, which replaces the now deprecated AbbrInlineProcessor. Abbreviation processing now happens after Attribute Lists, avoiding a conflict between the two extensions (#1460).

    The AbbrPreprocessor class has been renamed to AbbrBlockprocessor, which better reflects what it is. AbbrPreprocessor has been deprecated.

    A call to Markdown.reset() now clears all previously defined abbreviations.

    Abbreviations are now sorted by length before executing AbbrTreeprocessor to ensure that multi-word abbreviations are implemented even if an abbreviation

... (truncated)

Commits
  • b34e1d0 Bump version to 3.8
  • e6b7163 Update deploy workflow to normalize version
  • bd67d48 Improve changelog validation
  • e912575 Fix incorrect TOC list structure in docs
  • 42d4b43 Fix CI badge in README
  • 1caf028 Optimize raw HTML post-processor (#1510)
  • f6cfc5c Use PEP 639 license expressions in project metadata
  • 9c6e39a Add Python 3.13 and drop Python 3.8
  • 7aae61b Add special case for closing nested quotes
  • 0ad5b0a Abbr should respect AtomicStrings
  • Additional commits viewable in compare view

Updates mypy from 1.14.1 to 1.15.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Different Property Getter and Setter Types

Mypy now supports using different types for property getter and setter.

class A:
    value: int
@property
def f(self) -&gt; int:
    return self.value
@f.setter
def f(self, x: str | int) -&gt; None:
    try:
        self.value = int(x)
    except ValueError:
        raise Exception(f&quot;'{x}' is not a valid value for 'f'&quot;)

Contributed by Ivan Levkivskyi (PR 18510)

Selectively Disable Deprecated Warnings

It's now possible to selectively disable warnings generated from warnings.deprecated using the --deprecated-calls-exclude option.

# mypy --enable-error-code deprecated
#      --deprecated-calls-exclude=foo.A
import foo
foo.A().func()  # OK, the deprecated warning is ignored
file foo.py
from typing_extensions import deprecated
class A:
@​deprecated("Use A.func2 instead")
def func(self): pass

Contributed by Marc Mueller (PR 18641)

Mypy 1.15

We’ve just uploaded mypy 1.15 to the Python Package Index (PyPI).

... (truncated)

Commits
  • 9397454 remove +dev from version ahead of final release
  • 686b591 remove "unreleased" from 1.15 changelog entry
  • cb4b243 Various small updates to 1.15 changelog (#18599)
  • 1a26502 Prepare changelog for 1.15 release (#18583)
  • d4515e4 Fix a few PR links in the changelog (#18586)
  • f83b643 Add object self-type to tuple test fixture (#18592)
  • ebc2cb8 Prevent crash on generic NamedTuple with unresolved typevar bound (#18585)
  • 63c251e empty commit to trigger wheel rebuild
  • c30573e Fix literal context for ternary expressions (for real) (#18545)
  • 23d862d Fix isinstance with explicit (non generic) type alias (#18512)
  • Additional commits viewable in compare view

Updates types-markdown from 3.7.0.20241204 to 3.8.0.20250413

Commits

Updates hypothesis from 6.124.9 to 6.131.0

Release notes

Sourced from hypothesis's releases.

Hypothesis for Python - version 6.131.0

Add "is_hypothesis_test()", for third-party libraries which want to determine whether a test has been defined with Hypothesis.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.130.13

Refactor some internals.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.130.12

Lays some groundwork for future work on collecting interesting literals from the code being tested, for increased bug-finding power (issue #3127). There is no user-visible change (yet!)

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.130.8

Improves the documentation of "verbosity" objects.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.130.7

Rename internal variables for clarity.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.130.6

Update the documentation link in "HealthCheck" error messages to their new location in the documentation.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.130.5

Improve our internal type hints.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.130.4

Improve an additional interaction between the hypothesis-crosshair backend and our observability tools.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.130.3

This patch improves the interaction between the hypothesis-crosshair backend and our observability tools.

The canonical version of these notes (with links) is on readthedocs.

... (truncated)

Commits
  • 049d075 Bump hypothesis-python version to 6.131.0 and update changelog
  • 83c5da4 Merge pull request #4354 from tybug/document-is-hypothesis-test
  • 4e34889 add pytest ref link
  • 2e62fad update ghostwriter tests
  • 7b9a272 document is_hypothesis_test
  • 33c050c Bump hypothesis-python version to 6.130.13 and update changelog
  • 3154fb3 Merge pull request #4353 from tybug/refactor
  • e9a3f90 add release notes
  • 377b4ee Merge branch 'master' into refactor
  • cf92ea0 improve ast constant extraction performance
  • Additional commits viewable in compare view

Updates setuptools-scm[toml] from 8.1.0 to 8.2.0

Changelog

Sourced from setuptools-scm[toml]'s changelog.

v8.2.0

Added

  • fix #960: add a --force-write-version-files flag for the cli

Changed

  • fix #950: ensure to pass encodings to io usage
  • fix #957: add subprocess timeout control env var
  • add sp-repo-review pre-commit hook

Fixed

  • fix #1018: allow non-normalized versions for semver
  • fix #1103: respect GIT_CEILING_DIRECTORIES when trying to find git toplevels
  • fix #1081: add name normalized pipx entrypoint
  • fix #1080: clean pdm from PYTHONPATH to protect mercurial
Commits
  • e554978 complete changelog to reasonable accuracy for quick release
  • 260dcf0 chore: scriv collect
  • 836eb42 Merge pull request #1096 from DimitriPapadopoulos/ruff_0.9.1
  • 98b7078 Merge pull request #1106 from Ecordonnier/eco/git-ceiling-directories
  • 7d4e94c Merge pull request #1104 from jezdez/patch-1
  • 0b82e5d [pre-commit.ci] auto fixes from pre-commit.com hooks
  • 979d793 respect GIT_CEILING_DIRECTORIES
  • 68c6b20 Add missing code block end.
  • 9b6f031 Merge pull request #1102 from paugier/error-message-env-var
  • 2b0722f Mention SETUPTOOLS_SCM_PRETEND_VERSION_FOR in error message
  • Additional commits viewable in compare view

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 conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [flake8](https://github.com/pycqa/flake8) | `7.1.1` | `7.2.0` |
| [markdown](https://github.com/Python-Markdown/markdown) | `3.7` | `3.8` |
| [mypy](https://github.com/python/mypy) | `1.14.1` | `1.15.0` |
| [types-markdown](https://github.com/typeshed-internal/stub_uploader) | `3.7.0.20241204` | `3.8.0.20250413` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.124.9` | `6.131.0` |
| [setuptools-scm[toml]](https://github.com/pypa/setuptools-scm) | `8.1.0` | `8.2.0` |


Updates `flake8` from 7.1.1 to 7.2.0
- [Commits](PyCQA/flake8@7.1.1...7.2.0)

Updates `markdown` from 3.7 to 3.8
- [Release notes](https://github.com/Python-Markdown/markdown/releases)
- [Changelog](https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md)
- [Commits](Python-Markdown/markdown@3.7...3.8)

Updates `mypy` from 1.14.1 to 1.15.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.14.1...v1.15.0)

Updates `types-markdown` from 3.7.0.20241204 to 3.8.0.20250413
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `hypothesis` from 6.124.9 to 6.131.0
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.124.9...hypothesis-python-6.131.0)

Updates `setuptools-scm[toml]` from 8.1.0 to 8.2.0
- [Release notes](https://github.com/pypa/setuptools-scm/releases)
- [Changelog](https://github.com/pypa/setuptools-scm/blob/main/CHANGELOG.md)
- [Commits](pypa/setuptools-scm@v8.1.0...v8.2.0)

---
updated-dependencies:
- dependency-name: flake8
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: markdown
  dependency-version: '3.8'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: mypy
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: types-markdown
  dependency-version: 3.8.0.20250413
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: hypothesis
  dependency-version: 6.131.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: setuptools-scm[toml]
  dependency-version: 8.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added part:tooling Affects the development tooling (CI, deployment, dependency management, etc.) type:tech-debt Improves the project without visible changes for users labels Apr 14, 2025
@dependabot dependabot bot requested a review from a team as a code owner April 14, 2025 10:39
@dependabot dependabot bot requested a review from shsms April 14, 2025 10:39
@llucax llucax enabled auto-merge April 14, 2025 10:39
@llucax llucax added this pull request to the merge queue Apr 14, 2025
Merged via the queue into v1.x.x with commit eb59b37 Apr 14, 2025
8 checks passed
@llucax llucax deleted the dependabot/pip/minor-9886e8cbe7 branch April 14, 2025 10:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

part:tooling Affects the development tooling (CI, deployment, dependency management, etc.) type:tech-debt Improves the project without visible changes for users

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant