Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

Bumps the development-dependencies group with 6 updates in the / directory:

Package From To
wheel 0.45.0 0.45.1
mypy 1.13.0 1.14.1
twine 5.1.1 6.0.1
types-jsonschema 4.23.0.20240813 4.23.0.20241208
types-lxml 2024.11.8 2024.12.13
types-pytz 2024.2.0.20241003 2024.2.0.20241221

Updates wheel from 0.45.0 to 0.45.1

Release notes

Sourced from wheel's releases.

0.45.1

  • Fixed pure Python wheels converted from eggs and wininst files having the ABI tag in the file name
Changelog

Sourced from wheel's changelog.

Release Notes

0.45.1 (2024-11-23)

  • Fixed pure Python wheels converted from eggs and wininst files having the ABI tag in the file name

0.45.0 (2024-11-08)

  • Refactored the convert command to not need setuptools to be installed

  • Don't configure setuptools logging unless running bdist_wheel

  • Added a redirection from wheel.bdist_wheel.bdist_wheel to setuptools.command.bdist_wheel.bdist_wheel to improve compatibility with setuptools' latest fixes.

    Projects are still advised to migrate away from the deprecated module and import the setuptools' implementation explicitly. (PR by @​abravalheri)

0.44.0 (2024-08-04)

  • Canonicalized requirements in METADATA file (PR by Wim Jeantine-Glenn)
  • Deprecated the bdist_wheel module, as the code was migrated to setuptools itself

0.43.0 (2024-03-11)

  • Dropped support for Python 3.7
  • Updated vendored packaging to 24.0

0.42.0 (2023-11-26)

  • Allowed removing build tag with wheel tags --build ""
  • Fixed wheel pack and wheel tags writing updated WHEEL fields after a blank line, causing other tools to ignore them
  • Fixed wheel pack and wheel tags writing WHEEL with CRLF line endings or a mix of CRLF and LF
  • Fixed wheel pack --build-number "" not removing build tag from WHEEL (above changes by Benjamin Gilbert)

0.41.3 (2023-10-30)

  • Updated vendored packaging to 23.2
  • Fixed ABI tag generation for CPython 3.13a1 on Windows (PR by Sam Gross)

0.41.2 (2023-08-22)

  • Fixed platform tag detection for GraalPy and 32-bit python running on an aarch64 kernel (PR by Matthieu Darbois)
  • Fixed wheel tags to not list directories in RECORD files

... (truncated)

Commits
  • 7855525 Created a new release
  • d343391 Fixed wrong wheel file names in converted pure-Python eggs/wininsts
  • See full diff in compare view

Updates mypy from 1.13.0 to 1.14.1

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Drop Support for Python 3.8

Mypy no longer supports running with Python 3.8, which has reached end-of-life. When running mypy with Python 3.9+, it is still possible to type check code that needs to support Python 3.8 with the --python-version 3.8 argument. Support for this will be dropped in the first half of 2025!

Contributed by Marc Mueller (PR 17492).

Mypyc accelerated mypy wheels for aarch64

Mypy can compile itself to C extension modules using mypyc. This makes mypy 3-5x faster than if mypy is interpreted with pure Python. We now build and upload mypyc accelerated mypy wheels for manylinux_aarch64 to PyPI, making it easy for users on such platforms to realise this speedup.

Contributed by Christian Bundy (PR mypy_mypyc-wheels#76)

--strict-bytes

By default, mypy treats an annotation of bytes as permitting bytearray and memoryview. PEP 688 specified the removal of this special case. Use this flag to disable this behavior. --strict-bytes will be enabled by default in mypy 2.0.

Contributed by Ali Hamdan (PR 18137) and Shantanu Jain (PR 13952).

Improvements to partial type handling in loops

This change results in mypy better modelling control flow within loops and hence detecting several issues it previously did not detect. In some cases, this change may require use of an additional explicit annotation of a variable.

Contributed by Christoph Tyralla (PR 18180).

(Speaking of partial types, another reminder that mypy plans on enabling --local-partial-types by default in mypy 2.0).

Mypy 1.14

We’ve just uploaded mypy 1.14 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

... (truncated)

Commits

Updates twine from 5.1.1 to 6.0.1

Changelog

Sourced from twine's changelog.

Twine 6.0.1 (2024-11-30)

Bugfixes ^^^^^^^^

  • Fixed a regression where twine check would fail to expand wildcards, e.g. twine check 'dist/*'. ([#1188](https://github.com/pypa/twine/issues/1188) <https://github.com/pypa/twine/issues/1188>_)

Misc ^^^^

  • [#1184](https://github.com/pypa/twine/issues/1184) <https://github.com/pypa/twine/issues/1184>_

Twine 6.0.0 (2024-11-29)

Bugfixes ^^^^^^^^

  • Restore support for pkginfo 1.11 ([#1116](https://github.com/pypa/twine/issues/1116) <https://github.com/pypa/twine/issues/1116>_)

Deprecations and Removals ^^^^^^^^^^^^^^^^^^^^^^^^^

  • Username for PyPI and Test PyPI now defaults to token but no longer overrides a username configured in the environment or supplied on the command line. Workflows still supplying anything other than token for the username when uploading to PyPI or Test PyPI will now fail. Either supply token or do not supply a username at all. ([#1121](https://github.com/pypa/twine/issues/1121) <https://github.com/pypa/twine/issues/1121>_)

Misc ^^^^

  • [#1024](https://github.com/pypa/twine/issues/1024) <https://github.com/pypa/twine/issues/1024>_
Commits
  • a723876 Merge pull request #1189 from pypa/release-6.0.1
  • 9a24828 Update changelog for 6.0.1
  • a017005 Merge pull request #1188 from pypa/ww/fix-twine-check-glob
  • e98f03b check: fix handling of non-shell-expanded globs
  • 873f33e build(deps): bump pypa/gh-action-pypi-publish from 1.11.0 to 1.12.2 (#1175)
  • 067412e Use brackets for the default value of option arguments (#1149)
  • f32dc35 Apply ruff/Perflint rule (#1136)
  • aa58273 Don't require importlib_metadata on Python 3.10+
  • 675565f changelog: record #1184
  • 80cc58c chore: mark 3.13 as explicitly supported
  • Additional commits viewable in compare view

Updates types-jsonschema from 4.23.0.20240813 to 4.23.0.20241208

Commits

Updates types-lxml from 2024.11.8 to 2024.12.13

Release notes

Sourced from types-lxml's releases.

2024.12.13

Breaking changes and features

  • bytearray accepted as tag names, attribute names and attribute values
    • Related change: create _TextArg type alias to slowly replace existing _AnyStr (#71)
  • Warn IDE users via warnings.deprecated about exception upon certain argument combinations in HTML link functions

Bug fixes

  • Property deleter missing for HTML elements (#73)
  • etree.strip_attributes() support bytes and QName as input
  • Completion of #64 for remaining known cases
  • Corrected link replacement function return type in html.rewrite_links()
  • etree.canonicalize() shouldn't accept bytes as input

Tests related

  • Use hypothesis for extensive tests on function arguments, currently used in _Attrib and HTML link function tests (#75)
  • reveal_type() injector has been split into its own project and pulled via dependency

Internal changes

  • Folder structure changes for the whole repository (#70)
  • Remove _HANDLE_FAILURES type alias and show values directly to users
  • Rename type-only protocol SupportsLaxedItems to SupportsLaxItems

Full Changelog: abelcheung/types-lxml@2024.11.08...2024.12.13

Commits
  • 525e6f8 fix(test): error output on canonicalize() and C14NWriterTarget tests changed
  • 60b8b7c style: Ruff formatting
  • ff2fde8 fix(stub): Guard against str usage in XPath Extension function
  • 116376d fix(stub): Guard against string usage in canonicalize() and C14NWriterTarget
  • abe3466 fix(stub): canonicalize() doesn't accept bytes as input data
  • ba89980 test: Suppress html link function base_href test warnings
  • 683d933 perf(test): Disable HealthCheck for all negative type tests
  • 6c5b231 chore: Refresh tox test package dependency versions
  • 34a5cf1 build: Use packaging metadata v2.4
  • f9e7345 refactor: Drop _HANDLE_FAILURES type alias
  • Additional commits viewable in compare view

Updates types-pytz from 2024.2.0.20241003 to 2024.2.0.20241221

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

@dependabot dependabot bot requested a review from a team as a code owner January 1, 2025 08:37
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 1, 2025
@codecov
Copy link

codecov bot commented Jan 1, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 87.72%. Comparing base (1afe96b) to head (eb99767).
Report is 2 commits behind head on develop.

Additional details and impacted files
@@           Coverage Diff            @@
##           develop     #746   +/-   ##
========================================
  Coverage    87.72%   87.72%           
========================================
  Files           38       38           
  Lines         3145     3145           
  Branches       385      385           
========================================
  Hits          2759     2759           
  Misses         245      245           
  Partials       141      141           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@dependabot dependabot bot force-pushed the dependabot/pip/development-dependencies-c00d84f41c branch from 5b7b343 to 074aea1 Compare January 8, 2025 15:41
@jtrobles-cdd jtrobles-cdd self-assigned this Jan 8, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/development-dependencies-c00d84f41c branch from 074aea1 to 7f93ea2 Compare January 8, 2025 17:01
@jtrobles-cdd jtrobles-cdd force-pushed the dependabot/pip/development-dependencies-c00d84f41c branch from 7f93ea2 to 058a22f Compare January 8, 2025 17:33
Bumps the development-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [wheel](https://github.com/pypa/wheel) | `0.45.0` | `0.45.1` |
| [mypy](https://github.com/python/mypy) | `1.13.0` | `1.14.1` |
| [twine](https://github.com/pypa/twine) | `5.1.1` | `6.0.1` |
| [types-jsonschema](https://github.com/python/typeshed) | `4.23.0.20240813` | `4.23.0.20241208` |
| [types-lxml](https://github.com/abelcheung/types-lxml) | `2024.11.8` | `2024.12.13` |
| [types-pytz](https://github.com/python/typeshed) | `2024.2.0.20241003` | `2024.2.0.20241221` |

Updates `wheel` from 0.45.0 to 0.45.1
- [Release notes](https://github.com/pypa/wheel/releases)
- [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst)
- [Commits](pypa/wheel@0.45.0...0.45.1)

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

Updates `twine` from 5.1.1 to 6.0.1
- [Release notes](https://github.com/pypa/twine/releases)
- [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst)
- [Commits](pypa/twine@v5.1.1...6.0.1)

Updates `types-jsonschema` from 4.23.0.20240813 to 4.23.0.20241208
- [Commits](https://github.com/python/typeshed/commits)

Updates `types-lxml` from 2024.11.8 to 2024.12.13
- [Release notes](https://github.com/abelcheung/types-lxml/releases)
- [Commits](abelcheung/types-lxml@2024.11.08...2024.12.13)

Updates `types-pytz` from 2024.2.0.20241003 to 2024.2.0.20241221
- [Commits](https://github.com/python/typeshed/commits)

---
updated-dependencies:
- dependency-name: wheel
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: twine
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: types-jsonschema
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: types-lxml
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: types-pytz
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@jtrobles-cdd jtrobles-cdd force-pushed the dependabot/pip/development-dependencies-c00d84f41c branch from 058a22f to eb99767 Compare January 8, 2025 17:34
@jtrobles-cdd jtrobles-cdd changed the title chore(deps-dev): Bump the development-dependencies group across 1 directory with 6 updates chore(deps): Bump the development-dependencies group with 6 updates Jan 8, 2025
@sonarqubecloud
Copy link

sonarqubecloud bot commented Jan 8, 2025

@jtrobles-cdd jtrobles-cdd enabled auto-merge January 8, 2025 17:37
@jtrobles-cdd jtrobles-cdd disabled auto-merge January 8, 2025 18:08
@jtrobles-cdd jtrobles-cdd enabled auto-merge January 8, 2025 18:09
@jtrobles-cdd jtrobles-cdd merged commit 576b8b2 into develop Jan 8, 2025
21 checks passed
@jtrobles-cdd jtrobles-cdd deleted the dependabot/pip/development-dependencies-c00d84f41c branch January 8, 2025 18:09
@svillegas-cdd svillegas-cdd mentioned this pull request Jan 8, 2025
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants