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

Bump the python-dependencies group across 1 directory with 14 updates #278

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

Updates the requirements on numpy, holidays, tornado, setuptools, boto3-stubs, types-pymysql, types-python-dateutil, types-regex, types-waitress, boto3, pytest, regex, matplotlib and ixbrl-viewer to permit the latest version.
Updates numpy from 2.1.2 to 2.2.0

Release notes

Sourced from numpy's releases.

2.2.0 (Dec 8, 2024)

NumPy 2.2.0 Release Notes

The NumPy 2.2.0 release is quick release that brings us back into sync with the usual twice yearly release cycle. There have been an number of small cleanups, as well as work bringing the new StringDType to completion and improving support for free threaded Python. Highlights are:

  • New functions matvec and vecmat, see below.
  • Many improved annotations.
  • Improved support for the new StringDType.
  • Improved support for free threaded Python
  • Fixes for f2py

This release supports Python versions 3.10-3.13.

Deprecations

  • _add_newdoc_ufunc is now deprecated. ufunc.__doc__ = newdoc should be used instead.

    (gh-27735)

Expired deprecations

  • bool(np.array([])) and other empty arrays will now raise an error. Use arr.size > 0 instead to check whether an array has no elements.

    (gh-27160)

Compatibility notes

  • numpy.cov now properly transposes single-row (2d array) design matrices when rowvar=False. Previously, single-row design matrices would return a scalar in this scenario, which is not correct, so this is a behavior change and an array of the appropriate shape will now be returned.

    (gh-27661)

New Features

  • New functions for matrix-vector and vector-matrix products

    Two new generalized ufuncs were defined:

    • numpy.matvec - matrix-vector product, treating the arguments as stacks of matrices and column vectors,

... (truncated)

Commits
  • e7a123b Merge pull request #27928 from charris/prepare-2.2.0
  • d97d071 MAINT: Try fixing MacOS cirrus build failures. [wheel build]
  • 1ed7b67 REL: Prepare for the NumPy 2.2.0 release [wheel build]
  • fd9e7ef Merge pull request #27916 from charris/backport-27915
  • 2e0941f MAINT: Bump actions/cache from 4.1.2 to 4.2.0
  • 013656d Merge pull request #27912 from charris/backport-27877
  • 7895ba6 Merge pull request #27913 from charris/backport-27896
  • ee8d1cd PERF: improve multithreaded ufunc scaling (#27896)
  • 77fff6b ENH: Refactor __qualname__ across API (#27877)
  • b30a338 Merge pull request #27911 from charris/backport-27891
  • Additional commits viewable in compare view

Updates holidays from 0.59 to 0.62

Release notes

Sourced from holidays's releases.

v0.62

Version 0.62

Released December 2, 2024

Full Changelog: vacanza/holidays@v0.61...v0.62

v0.61

Version 0.61

Released November 18, 2024

New Contributors

Full Changelog: vacanza/holidays@v0.60...v0.61

v0.60

Version 0.60

... (truncated)

Changelog

Sourced from holidays's changelog.

Version 0.62

Released December 2, 2024

Version 0.61

Released November 18, 2024

Version 0.60

Released November 4, 2024

... (truncated)

Commits

Updates tornado from 6.4.1 to 6.4.2

Changelog

Sourced from tornado's changelog.

Release notes

.. toctree:: :maxdepth: 2

releases/v6.4.2 releases/v6.4.1 releases/v6.4.0 releases/v6.3.3 releases/v6.3.2 releases/v6.3.1 releases/v6.3.0 releases/v6.2.0 releases/v6.1.0 releases/v6.0.4 releases/v6.0.3 releases/v6.0.2 releases/v6.0.1 releases/v6.0.0 releases/v5.1.1 releases/v5.1.0 releases/v5.0.2 releases/v5.0.1 releases/v5.0.0 releases/v4.5.3 releases/v4.5.2 releases/v4.5.1 releases/v4.5.0 releases/v4.4.3 releases/v4.4.2 releases/v4.4.1 releases/v4.4.0 releases/v4.3.0 releases/v4.2.1 releases/v4.2.0 releases/v4.1.0 releases/v4.0.2 releases/v4.0.1 releases/v4.0.0 releases/v3.2.2 releases/v3.2.1 releases/v3.2.0 releases/v3.1.1 releases/v3.1.0 releases/v3.0.2 releases/v3.0.1 releases/v3.0.0 releases/v2.4.1 releases/v2.4.0

... (truncated)

Commits

Updates setuptools to 75.6.0

Changelog

Sourced from setuptools's changelog.

v75.6.0

Features

  • Preserve original PKG-INFO into METADATA when creating wheel (instead of calling wheel.metadata.pkginfo_to_metadata). This helps to be more compliant with the flow specified in PEP 517. (#4701)
  • Changed the WindowsSdkVersion, FrameworkVersion32 and FrameworkVersion64 properties of setuptools.msvc.PlatformInfo to return an empty tuple instead of None as a fallthrough case -- by :user:Avasam (#4754)

v75.5.0

Features

  • Removed support for SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION, as it is deemed prone to errors. (#4746)

v75.4.0

Features

  • Added support for the environment variable SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION=true, allowing users to bypass the validation of pyproject.toml. This option should be used only as a last resort when resolving dependency issues, as it may lead to improper functioning. Users who enable this setting are responsible for ensuring that pyproject.toml complies with setuptools requirements. (#4611)

    .. attention:: This environment variable was removed in a later version of setuptools.

  • Require Python 3.9 or later. (#4718)

  • Remove dependency on importlib_resources and the vendored copy of the library. Instead, setuptools consistently rely on stdlib's importlib.resources (available on Python 3.9+). (#4718)

  • Setuptools' bdist_wheel implementation no longer produces wheels with the m SOABI flag (pymalloc-related). This flag was removed on Python 3.8+ (see :obj:sys.abiflags). (#4718)

  • Updated vendored packaging version to 24.2. (#4740)

... (truncated)

Commits
  • bf2ced2 Bump version: 75.5.0 → 75.6.0
  • 8685c80 Empty tuple instead of None for PlatformInfo version properties fallthrough (...
  • 50d671b Rename news fragment
  • 2b471c2 Changed the WindowsSdkVersion, FrameworkVersion32 and ``FrameworkVers...
  • 2c77cd2 Runtime typing fixes for typeshed return type merge (#4753
  • 9a4c8d4 Runtime typing fixes for typeshed return type merge
  • e622859 Preserve original PKG-INFO contents when creating wheel (instead of calling...
  • 0b5b417 Mark tests that may depend on external network
  • a4fa01d Add news fragment
  • 089aca9 Ignore coverage in test code
  • Additional commits viewable in compare view

Updates boto3-stubs from 1.35.49 to 1.35.76

Commits

Updates types-pymysql from 1.1.0.20240524 to 1.1.0.20241103

Commits

Updates types-python-dateutil from 2.9.0.20241003 to 2.9.0.20241206

Commits

Updates types-regex from 2024.9.11.20240912 to 2024.11.6.20241108

Commits

Updates types-waitress from 3.0.0.20241001 to 3.0.1.20241117

Commits

Updates boto3 from 1.35.49 to 1.35.76

Commits
  • a73c078 Merge branch 'release-1.35.76'
  • ec12aea Bumping version to 1.35.76
  • 8d23369 Add changelog entries from botocore
  • 543da72 Merge branch 'release-1.35.75'
  • c04fb42 Merge branch 'release-1.35.75' into develop
  • e9053d7 Bumping version to 1.35.75
  • d3ecf83 Add changelog entries from botocore
  • cf1ce04 Merge branch 'release-1.35.74'
  • 770fc4b Merge branch 'release-1.35.74' into develop
  • 304539d Bumping version to 1.35.74
  • Additional commits viewable in compare view

Updates pytest from 8.3.3 to 8.3.4

Release notes

Sourced from pytest's releases.

8.3.4

pytest 8.3.4 (2024-12-01)

Bug fixes

  • #12592: Fixed KeyError{.interpreted-text role="class"} crash when using --import-mode=importlib in a directory layout where a directory contains a child directory with the same name.

  • #12818: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the AST, like executing.

  • #12849: ANSI escape codes for colored output now handled correctly in pytest.fail{.interpreted-text role="func"} with [pytrace=False]{.title-ref}.

  • #9353: pytest.approx{.interpreted-text role="func"} now uses strict equality when given booleans.

Improved documentation

  • #10558: Fix ambiguous docstring of pytest.Config.getoption{.interpreted-text role="func"}.

  • #10829: Improve documentation on the current handling of the --basetemp option and its lack of retention functionality (temporary directory location and retention{.interpreted-text role="ref"}).

  • #12866: Improved cross-references concerning the recwarn{.interpreted-text role="fixture"} fixture.

  • #12966: Clarify filterwarnings{.interpreted-text role="ref"} docs on filter precedence/order when using multiple @pytest.mark.filterwarnings <pytest.mark.filterwarnings ref>{.interpreted-text role="ref"} marks.

Contributor-facing changes

  • #12497: Fixed two failing pdb-related tests on Python 3.13.
Commits
  • 53f8b4e Update pypa/gh-action-pypi-publish to v1.12.2
  • 98dff36 Prepare release version 8.3.4
  • 1b474e2 approx: use exact comparison for bool (#13013)
  • b541721 docs: Fix wrong statement about sys.modules with importlib import mode (#1298...
  • 16cb87b pytest.fail: fix ANSI escape codes for colored output (#12959) (#12990)
  • be6bc81 Issue #12966 Clarify filterwarnings docs on precedence when using multiple ma...
  • 7aeb72b Improve docs on basetemp and retention (#12912) (#12928)
  • c875841 Merge pull request #12917 from pytest-dev/patchback/backports/8.3.x/ded1f44e5...
  • 6502816 Merge pull request #12913 from jakkdl/dontfailonbadpath
  • 52135b0 Merge pull request #12885 from The-Compiler/pdb-py311 (#12887)
  • Additional commits viewable in compare view

Updates regex from 2024.9.11 to 2024.11.6

Changelog

Sourced from regex's changelog.

Version: 2024.11.7

Updated pyproject.toml and setup.py according to PEP 517.

Version: 2024.11.6

Git issue 546: Partial match not working in some instances with non-greedy capture

Version: 2024.9.14

Reverted to actions/download-artifact@v3 and actions/upload-artifact@v3 in main.yml because GitHub Actions failed when using them.

Version: 2024.9.13

Updated to actions/upload-artifact@v4 in main.yml.

Version: 2024.9.12

Updated to actions/download-artifact@v4 in main.yml.

Version: 2024.9.11

Updated to Unicode 16.0.0.

Version: 2024.7.24

Git issue 539: Bug: Partial matching fails on a simple example

Version: 2024.6.22

Git issue 535: Regex fails Unicode 15.1 GraphemeBreakTest due to missing new GB9c rule implementation

Version: 2024.5.15

Git issue 530: hangs with fuzzy and optionals

It's not hanging, it'll finish eventually. It's just an example of catastrophic backtracking.

The error printed when Ctrl+C is pressed does show a bug, though, which is now fixed.

Version: 2024.5.10

Updated for Python 3.13.

<time.h> now needs to be included explicitly because Python.h no longer includes it.

Version: 2024.4.28

Git issue 527: `VERBOSE`/`X` flag breaks `\N` escapes

... (truncated)

Commits
  • 930983a Git issue 546: Partial match not working in some instances with non-greedy ca...
  • 64834c7 Reverted to actions/download-artifact@v3 and actions/upload-artifact@v3 in ma...
  • 1bcd42e Updated to actions/upload-artifact@v4 in main.yml.
  • f467285 Updated to actions/download-artifact@v4 in main.yml.
  • See full diff in compare view

Updates matplotlib from 3.9.2 to 3.9.3

Release notes

Sourced from matplotlib's releases.

REL: 3.9.3

This is the third bugfix release of the 3.9.x series.

This release contains several bug-fixes and adjustments:

  • Fix axline with extremely small slopes
  • Fix axline with non-linear axis scales
  • Fix minimumSizeHint with Qt backend
  • Fix config directory usage when it's behind a symlink
  • Fix draggable legend when blitting is enabled
  • Fix high CPU utilization in the macosx backend
  • Fix multiple hatch edgecolors passed to contourf
  • Improve compatibility with pytest 8.2.0
Commits
  • 3ac0aea REL: 3.9.3
  • 3f7adbd Merge branch 'v3.9.2-doc' into v3.9.x
  • 4ca8d68 DOC: Create release notes for 3.9.3
  • 0cabfe2 Merge pull request #29195 from meeseeksmachine/auto-backport-of-pr-29191-on-v...
  • 562d458 Backport PR #29191: ci: Simplify 3.13t test setup
  • 0586854 Merge pull request #29176 from meeseeksmachine/auto-backport-of-pr-29148-on-v...
  • 84f2ae2 Merge pull request #29178 from meeseeksmachine/auto-backport-of-pr-29163-on-v...
  • dd57772 Backport PR #29163: ci: Remove outdated pkg-config package on macOS
  • c4bfd54 Backport PR #29148: Don't fail on equal-but-differently-named cmaps in qt fig...
  • d71ff49 Backport PR #29153: Bump codecov/codecov-action from 4 to 5 in the actions gr...
  • Additional commits viewable in compare view

Updates ixbrl-viewer from 1.4.37 to 1.4.44

Release notes

Sourced from ixbrl-viewer's releases.

1.4.44

What's Changed

1.4.43

What's Changed

1.4.42

What's Changed

⬆️ Dependencies

1.4.41

What's Changed

1.4.40

What's Changed

1.4.39

What's Changed

⬆️ Dependencies

1.4.38

What's Changed

... (truncated)

Commits
  • 210da36 Merge pull request #776 from austinmatherne-wk/store-theme
  • b47a160 Merge pull request #775 from austinmatherne-wk/FRCVIEW-191
  • aaf051f Merge pull request #773 from austinmatherne-wk/translate-glossary
  • fc4e511 Merge pull request #774 from austinmatherne-wk/fix-gui-save-viewer
  • 3ee793e Persist user theme selection in local storage
  • 1b42be4 Make highlight colors accessible
  • a3df395 Add search_on_startup and highlight_facts_on_startup options to GUI
  • 20982df Update GUI save viewer to use new plugin builder data
  • c3affcb Add translations for XBRL glossary text
  • 0c82023 Merge pull request #772 from paulwarren-wk/remove-logo-with-home-link
  • 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

Updates the requirements on [numpy](https://github.com/numpy/numpy), [holidays](https://github.com/vacanza/holidays), [tornado](https://github.com/tornadoweb/tornado), [setuptools](https://github.com/pypa/setuptools), [boto3-stubs](https://github.com/youtype/mypy_boto3_builder), [types-pymysql](https://github.com/python/typeshed), [types-python-dateutil](https://github.com/python/typeshed), [types-regex](https://github.com/python/typeshed), [types-waitress](https://github.com/python/typeshed), [boto3](https://github.com/boto/boto3), [pytest](https://github.com/pytest-dev/pytest), [regex](https://github.com/mrabarnett/mrab-regex), [matplotlib](https://github.com/matplotlib/matplotlib) and [ixbrl-viewer](https://github.com/Arelle/ixbrl-viewer) to permit the latest version.

Updates `numpy` from 2.1.2 to 2.2.0
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v2.1.2...v2.2.0)

Updates `holidays` from 0.59 to 0.62
- [Release notes](https://github.com/vacanza/holidays/releases)
- [Changelog](https://github.com/vacanza/holidays/blob/dev/CHANGES)
- [Commits](vacanza/holidays@v0.59...v0.62)

Updates `tornado` from 6.4.1 to 6.4.2
- [Changelog](https://github.com/tornadoweb/tornado/blob/v6.4.2/docs/releases.rst)
- [Commits](tornadoweb/tornado@v6.4.1...v6.4.2)

Updates `setuptools` to 75.6.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v73.0.0...v75.6.0)

Updates `boto3-stubs` from 1.35.49 to 1.35.76
- [Release notes](https://github.com/youtype/mypy_boto3_builder/releases)
- [Commits](https://github.com/youtype/mypy_boto3_builder/commits)

Updates `types-pymysql` from 1.1.0.20240524 to 1.1.0.20241103
- [Commits](https://github.com/python/typeshed/commits)

Updates `types-python-dateutil` from 2.9.0.20241003 to 2.9.0.20241206
- [Commits](https://github.com/python/typeshed/commits)

Updates `types-regex` from 2024.9.11.20240912 to 2024.11.6.20241108
- [Commits](https://github.com/python/typeshed/commits)

Updates `types-waitress` from 3.0.0.20241001 to 3.0.1.20241117
- [Commits](https://github.com/python/typeshed/commits)

Updates `boto3` from 1.35.49 to 1.35.76
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.35.49...1.35.76)

Updates `pytest` from 8.3.3 to 8.3.4
- [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.3.3...8.3.4)

Updates `regex` from 2024.9.11 to 2024.11.6
- [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt)
- [Commits](mrabarnett/mrab-regex@2024.9.11...2024.11.6)

Updates `matplotlib` from 3.9.2 to 3.9.3
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.9.2...v3.9.3)

Updates `ixbrl-viewer` from 1.4.37 to 1.4.44
- [Release notes](https://github.com/Arelle/ixbrl-viewer/releases)
- [Commits](Arelle/ixbrl-viewer@1.4.37...1.4.44)

---
updated-dependencies:
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: holidays
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: tornado
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: setuptools
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: boto3-stubs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: types-pymysql
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: types-python-dateutil
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: types-regex
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: types-waitress
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ixbrl-viewer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 9, 2024
@dependabot dependabot bot had a problem deploying to integration-tests December 9, 2024 11:40 Failure
@dependabot dependabot bot had a problem deploying to integration-tests December 9, 2024 11:40 Failure
@dependabot dependabot bot had a problem deploying to integration-tests December 9, 2024 11:40 Failure
@dependabot dependabot bot had a problem deploying to integration-tests December 9, 2024 11:41 Failure
@dependabot dependabot bot had a problem deploying to integration-tests December 9, 2024 11:41 Failure
@dependabot dependabot bot had a problem deploying to integration-tests December 9, 2024 11:41 Failure
Copy link
Author

dependabot bot commented on behalf of github Dec 16, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 16, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-dependencies-dd7fb96592 branch December 16, 2024 10:43
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 python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants