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 19 updates #253

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 7, 2024

Bumps the python-dependencies group with 19 updates in the / directory:

Package From To
lxml 5.2.2 5.3.0
pyparsing 3.1.2 3.1.4
pycryptodome 3.20.0 3.21.0
holidays 0.53 0.57
boto3 1.34.153 1.35.34
mypy 1.11.1 1.11.2
pytest 8.3.2 8.3.3
boto3-stubs 1.34.153 1.35.34
types-python-dateutil 2.9.0.20240316 2.9.0.20241003
types-pytz 2024.1.0.20240417 2024.2.0.20241003
types-regex 2024.7.24.20240726 2024.9.11.20240912
types-waitress 3.0.0.20240423 3.0.0.20241001
certifi 2024.7.4 2024.8.30
filelock 3.15.4 3.16.1
regex 2024.7.24 2024.9.11
pytz 2024.1 2024.2
pywin32 306 307
ixbrl-viewer 1.4.30 1.4.36
furo 2024.7.18 2024.8.6

Updates lxml from 5.2.2 to 5.3.0

Changelog

Sourced from lxml's changelog.

5.3.0 (2024-08-10)

Features added

  • GH#421: Nested CDATA sections are no longer rejected but split on output to represent ]]> correctly. Patch by Gertjan Klein.

Bugs fixed

  • LP#2060160: Attribute values serialised differently in xmlfile.element() and xmlfile.write().

  • LP#2058177: The ISO-Schematron implementation could fail on unknown prefixes. Patch by David Lakin.

Other changes

  • LP#2067707: The strip_cdata option in HTMLParser() turned out to be useless and is now deprecated.

  • Binary wheels use the library versions libxml2 2.12.9 and libxslt 1.1.42.

  • Windows binary wheels use the library versions libxml2 2.11.8 and libxslt 1.1.39.

  • Built with Cython 3.0.11.

Commits
  • 475f4ab Update release date.
  • e356a1e Build: Add some debug output.
  • 8345680 Build: Retry library downloads on failures.
  • 2fe6c90 CI: Test oldest officially supported library versions again (the slightly new...
  • 00335a1 Build: Improve download regexes.
  • f3da47d Prepare release of lxml 5.3.0.
  • 3119703 Add missing global name to "all" in lxml.etree.
  • 9de6180 Build: Upgrade cibuildwheel version also for the matrix setup.
  • 54e36cb Build: Upgrade libxslt to latest (1.1.42).
  • d4f56ee Build: Slightly increase the oldest libxslt version that we test against to w...
  • Additional commits viewable in compare view

Updates pyparsing from 3.1.2 to 3.1.4

Changelog

Sourced from pyparsing's changelog.

Version 3.1.4 - August, 2024

  • Fixed a regression introduced in pyparsing 3.1.3, addition of a type annotation that referenced re.Pattern. Since this type was introduced in Python 3.7, using this type definition broke Python 3.6 installs of pyparsing 3.1.3. PR submitted by Felix Fontein, nice work!

Version 3.1.3 - August, 2024

  • Added new Tag ParserElement, for inserting metadata into the parsed results. This allows a parser to add metadata or annotations to the parsed tokens. The Tag element also accepts an optional value parameter, defaulting to True. See the new tag_metadata.py example in the examples directory.

    Example:

      # add tag indicating mood
      end_punc = "." | ("!" + Tag("enthusiastic")))
      greeting = "Hello" + Word(alphas) + end_punc
    

    result = greeting.parse_string("Hello World.") print(result.dump())

    result = greeting.parse_string("Hello World!") print(result.dump())

    prints:

      ['Hello', 'World', '.']
    

    ['Hello', 'World', '!']

    • enthusiastic: True
  • Added example mongodb_query_expression.py, to convert human-readable infix query expressions (such as a==100 and b>=200) and transform them into the equivalent query argument for the pymongo package ({'$and': [{'a': 100}, {'b': {'$gte': 200}}]}). Supports many equality and inequality operators - see the docstring for the transform_query function for more examples.

  • Fixed issue where PEP8 compatibility names for ParserElement static methods were not themselves defined as staticmethods. When called using a ParserElement instance, this resulted in a TypeError exception. Reported by eylenburg (#548).

  • To address a compatibility issue in RDFLib, added a property setter for the ParserElement.name property, to call ParserElement.set_name.

  • Modified ParserElement.set_name() to accept a None value, to clear the defined name and corresponding error message for a ParserElement.

  • ... (truncated)

    Commits
    • b846e4a Prep for 3.1.4 release
    • 9bd2356 Add Python 3.6 to CI (#566)
    • ee50a19 Add Tag notes to HowToUsePyparsing.rst
    • 3ffc3ef Fix typo
    • e5e97f7 Add mongodb_query_expression.py to examples; updated 0README.html and test_ex...
    • 10cef98 Add Tag ParserElement class
    • cf41d90 Prep for 3.1.3 release
    • d7c163c Some minor code changes in chemical_formulas.py
    • eb56030 Various code cleanups
    • a9e7d47 Added name property setter, and enhanced set_name() to accept a None value to...
    • Additional commits viewable in compare view

    Updates pycryptodome from 3.20.0 to 3.21.0

    Release notes

    Sourced from pycryptodome's releases.

    v3.21.0 - Bourdeaux

    New features

    • By setting the PYCRYPTODOME_DISABLE_GMP environment variable, the GMP library will not be used even if detected.
    • Add support for Curve25519 / X25519.
    • Add support for Curve448 / X448.
    • Add attribute curve to EccPoint and EccXPoint classes, with the canonical name of the curve.
    • GH#781: the label for the SP800_108_Counter KDF may now contain zero bytes. Thanks to Julien Rische.
    • GH#814: RSA keys for PSS can be imported.

    Resolved issues

    • GH#810: fixed negation of Ed25519 points.
    • GH#819: accept an RFC5916 ECPrivateKey even if it doesn't contain any of the optional elements (parameters [0] and publicKey[1]).

    Other changes

    • Remove support for Python 3.5.

    v3.21.0 - Bourdeaux (pycryptodomex)

    New features

    • By setting the PYCRYPTODOME_DISABLE_GMP environment variable, the GMP library will not be used even if detected.
    • Add support for Curve25519 / X25519.
    • Add support for Curve448 / X448.
    • Add attribute curve to EccPoint and EccXPoint classes, with the canonical name of the curve.
    • GH#781: the label for the SP800_108_Counter KDF may now contain zero bytes. Thanks to Julien Rische.
    • GH#814: RSA keys for PSS can be imported.

    Resolved issues

    • GH#810: fixed negation of Ed25519 points.
    • GH#819: accept an RFC5916 ECPrivateKey even if it doesn't contain any of the optional elements (parameters [0] and publicKey[1]).

    Other changes

    • Remove support for Python 3.5.
    Changelog

    Sourced from pycryptodome's changelog.

    3.21.0 (30 September 2024) ++++++++++++++++++++++++++

    New features

    • By setting the PYCRYPTODOME_DISABLE_GMP environment variable, the GMP library will not be used even if detected.
    • Add support for Curve25519 / X25519.
    • Add support for Curve448 / X448.
    • Add attribute curve to EccPoint and EccXPoint classes, with the canonical name of the curve.
    • GH#781: the label for the SP800_108_Counter KDF may now contain zero bytes. Thanks to Julien Rische.
    • GH#814: RSA keys for PSS can be imported.

    Resolved issues

    • GH#810: fixed negation of Ed25519 points.
    • GH#819: accept an RFC5916 ECPrivateKey even if it doesn't contain any of the optional elements (parameters [0] and publicKey[1]).

    Other changes

    • Remove support for Python 3.5.
    Commits
    • 5e40a18 Bump version
    • cd4cb45 Fix docs and changelog
    • d499d27 Decrypt PKCS#8 key even if the password is empty
    • 0c86527 Build wheel on Windows 2019
    • fdd7892 Bump required version of pycryptodome-test-vectors
    • 5040405 Build wheel for Python 3.13
    • 19494e0 Bump version for test vectors package
    • 66420a7 Fix tests for x448/x25519
    • 05bcdff Add tag for Python 3.13
    • 2ddda6a Fixed typo in documentation
    • Additional commits viewable in compare view

    Updates holidays from 0.53 to 0.57

    Release notes

    Sourced from holidays's releases.

    v0.57

    Version 0.57

    Released September 16, 2024

    New Contributors

    Full Changelog: vacanza/holidays@v0.56...v0.57

    v0.56

    Version 0.56

    Released September 2, 2024

    ... (truncated)

    Changelog

    Sourced from holidays's changelog.

    Version 0.57

    Released September 16, 2024

    Version 0.56

    Released September 2, 2024

    Version 0.55

    Released August 19, 2024

    ... (truncated)

    Commits

    Updates boto3 from 1.34.153 to 1.35.34

    Commits
    • 8e68079 Merge branch 'release-1.35.34'
    • 094bd6a Bumping version to 1.35.34
    • 019fd14 Add changelog entries from botocore
    • 9ef00b9 Merge branch 'release-1.35.33'
    • 07050a2 Merge branch 'release-1.35.33' into develop
    • 97a9ca2 Bumping version to 1.35.33
    • 2cfe492 Add changelog entries from botocore
    • 81b3ed4 Merge branch 'release-1.35.32'
    • 73ecd1d Merge branch 'release-1.35.32' into develop
    • d4e5f9e Bumping version to 1.35.32
    • Additional commits viewable in compare view

    Updates mypy from 1.11.1 to 1.11.2

    Commits
    • 789f02c Bump version to 1.11.2
    • 917cc75 An alternative fix for a union-like literal string (#17639)
    • 7d805b3 Unwrap TypedDict item types before storing (#17640)
    • 32675dd Revert "Fix Literal strings containing pipe characters" (#17638)
    • 778542b Revert "Fix RawExpressionType.accept crash with --cache-fine-grained" (#1...
    • 14ab742 Bump version to 1.11.2+dev
    • See full diff in compare view

    Updates pytest from 8.3.2 to 8.3.3

    Release notes

    Sourced from pytest's releases.

    8.3.3

    pytest 8.3.3 (2024-09-09)

    Bug fixes

    • #12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"}

    • #12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1.

    • #12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail.

    • #12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by Avasam{.interpreted-text role="user"}

    • #12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.

    • #6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in assert condition, msg).

    • #9422: Fix bug where disabling the terminal plugin via -p no:terminal would cause crashes related to missing the verbose option.

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

    Improved documentation

    • #12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected.
    • #12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs.

    Miscellaneous internal changes

    • #12769: Fix typos discovered by codespell and add codespell to pre-commit hooks.
    Commits

    Updates boto3-stubs from 1.34.153 to 1.35.34

    Commits

    Updates types-python-dateutil from 2.9.0.20240316 to 2.9.0.20241003

    Commits

    Updates types-pytz from 2024.1.0.20240417 to 2024.2.0.20241003

    Commits

    Updates types-regex from 2024.7.24.20240726 to 2024.9.11.20240912

    Commits

    Updates types-waitress from 3.0.0.20240423 to 3.0.0.20241001

    Commits

    Updates certifi from 2024.7.4 to 2024.8.30

    Commits

    Updates filelock from 3.15.4 to 3.16.1

    Release notes

    Sourced from filelock's releases.

    3.16.1

    What's Changed

    Full Changelog: tox-dev/filelock@3.16.0...3.16.1

    3.16.0

    What's Changed

    Full Changelog: tox-dev/filelock@3.15.4...3.16.0

    Commits

    Updates regex from 2024.7.24 to 2024.9.11

    Changelog

    Sourced from regex's changelog.

    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
    

    Version: 2024.4.16

    Git issue 525: segfault when fuzzy matching empty list
    

    Version: 2023.12.25

    Cannot get release notification action in main.yml to work. Commenting it out for now.
    

    ... (truncated)

    Commits

    Updates pytz from 2024.1 to 2024.2

    Commits
    • 3944f75 Bump version numbers to 2024.2 / 2024b
    • 640c9bd IANA 2024b
    • 382ca0c Squashed 'tz/' changes from 380c07cef..923e54bae
    • 96a1e88 Stop testing unavailable and EOL Python 3.5
    • 68186b6 Add support for Python 3.13
    • e994058 Run other jobs if one fails
    • 2326f9f Bump GitHub Actions
    • See full diff in compare view

    Updates pywin32 from 306 to 307

    Release notes

    Sourced from pywin32's releases.

    Release 307

    The changes

    Installed with pip:

    pip install pywin32 --upgrade

    More details in the README

    There are no .exe installers for this release - you must use pip.

    Changelog

    Sourced from pywin32's changelog.

    Build 307, released 2024-10-04

    Release process changes

    pywin32 is now released from artifacts created by Github actions, whereas previously they were created from an environment where certain tools and libraries were located and installed by hand.

    This means some capabilities are no longer provided - this includes some documentation artifacts, such as the .chm file, certain MAPI libraries etc, and .exe installers.

    pywin32

    • Remove obsolete and unused pywin.is_platform_unicode (#2343, @​Avasam)
    • Fix isapi.ThreadPoolExtension's printing of exception traceback broken on Python 3.8+ (#2312, @​Avasam)
    • Add RealGetWindowClass (#2299, @​CristiFati)
    • Make it compile on Python 3.13 (#2260, @​clin1234)
    • Fixed accidentally trying to raise a str instead of an Exception in (#2270, @​Avasam)
      • Pythonwin/pywin/debugger/debugger.py
      • Pythonwin/pywin/framework/dlgappcore.py
      • com/win32com/server/policy.py
      • win32/Lib/regutil.py
      • win32/scripts/VersionStamp/vssutil.py
    • Removed the following unused symbols. They were meant to be used as Exceptions, but were accidentally strings (#2270, #2269, @​Avasam)
      • pywin.debugger.debugger.error
      • pywin.framework.dlgappcore.error
      • win32com.server.policy.error
      • regutil.error
      • win32.scripts.VersionStamp.vssutil.error
      • win32com.universal.com_error
      • win32com.client.build.error
      • win32com.client.genpy.error
    • Add EnumDesktopWindows (#2219, @​CristiFati)
    • Marked exc_type and exc_traceback in win32comext.axscript.client.error.AXScriptException.__init__ as deprecated. (#2236 , @​Avasam) They are now unused and all information is taken from the exc_value parameter.
    • Fixed non-overriden pywin.scintilla.formatter.Formatter.ColorizeString raising TypeError instead of RuntimeError due to too many parameters (#2216, @​Avasam)
    • Fixed broken since Python 3 tokenization in win32comext.axdebug.codecontainer.pySourceCodeContainer.GetSyntaxColorAttributes (#2216, @​Avasam)
    • Fixed a TypeError due to incorrect kwargs in win32comext.axscript.client.pydumper.Register (#2216, @​Avasam)
    • Fixed error reporting of file copy failure for for installing debug dlls (#2216, @​Avasam)
    • Fixed py.exe -m win32verstamp command and other quote typos caused by Implied String Concatenation (#2225, @​Avasam)
    • Fixed tons of quote-related typos in strings, docs and comments (#2271 , @​Avasam)
    • Fixed VT_SAFEARRAY(VT_RECORD) which were missing the last element (#2247)
    • Fixed MFC redist DLLs not found by preferring corresponding version but accepting different version (#2248, @​andreabravetti)
    • Fixed pywintypes.error: (5, 'RegOpenKeyEx', 'Access is denied.') when running service with debug parameter and no elevation (#2238, @​jmartens)
    • Fixed handling of SyntaxError exception from a Windows Scripting Host Python Script on Python 3.10+ (#2235, @​nbbeatty)
    • Add CredGetSessionTypes support (#2232, @​CristiFati)
    • Fixed win32clipboard increasing size of data when SetClipboardData used with CF_DIB (#2184, @​CristiFati)
    • Add StoreLogoff to PyIMsgStore to prevent possible hang when MAPI uninitializes or during session logoff (#2196, @​avivbrg)
    • Enhance CredDelete to work with dictionaries (#2198, @​CristiFati)
    • Add UnregisterHotKey support (#2185, @​CristiFati)
    • IFolderView COM client support (#2180, #2181, #2182, @​CristiFati)

    ... (truncated)

    Commits

    Updates ixbrl-viewer from 1.4.30 to 1.4.36

    Release notes

    Sourced from ixbrl-viewer's releases.

    1.4.36

    What's Changed

    1.4.35

    What's Changed

    ⬆️ Dependencies

    1.4.34

    What's Changed

    ⬆️ Dependencies

    1.4.33

    What's Changed

    1.4.32

    What's Changed

    ⬆️ Dependencies

    ... (truncated)

    Commits

    Bumps the python-dependencies group with 19 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [lxml](https://github.com/lxml/lxml) | `5.2.2` | `5.3.0` |
    | [pyparsing](https://github.com/pyparsing/pyparsing) | `3.1.2` | `3.1.4` |
    | [pycryptodome](https://github.com/Legrandin/pycryptodome) | `3.20.0` | `3.21.0` |
    | [holidays](https://github.com/vacanza/python-holidays) | `0.53` | `0.57` |
    | [boto3](https://github.com/boto/boto3) | `1.34.153` | `1.35.34` |
    | [mypy](https://github.com/python/mypy) | `1.11.1` | `1.11.2` |
    | [pytest](https://github.com/pytest-dev/pytest) | `8.3.2` | `8.3.3` |
    | [boto3-stubs](https://github.com/youtype/mypy_boto3_builder) | `1.34.153` | `1.35.34` |
    | [types-python-dateutil](https://github.com/python/typeshed) | `2.9.0.20240316` | `2.9.0.20241003` |
    | [types-pytz](https://github.com/python/typeshed) | `2024.1.0.20240417` | `2024.2.0.20241003` |
    | [types-regex](https://github.com/python/typeshed) | `2024.7.24.20240726` | `2024.9.11.20240912` |
    | [types-waitress](https://github.com/python/typeshed) | `3.0.0.20240423` | `3.0.0.20241001` |
    | [certifi](https://github.com/certifi/python-certifi) | `2024.7.4` | `2024.8.30` |
    | [filelock](https://github.com/tox-dev/py-filelock) | `3.15.4` | `3.16.1` |
    | [regex](https://github.com/mrabarnett/mrab-regex) | `2024.7.24` | `2024.9.11` |
    | [pytz](https://github.com/stub42/pytz) | `2024.1` | `2024.2` |
    | [pywin32](https://github.com/mhammond/pywin32) | `306` | `307` |
    | [ixbrl-viewer](https://github.com/Arelle/ixbrl-viewer) | `1.4.30` | `1.4.36` |
    | [furo](https://github.com/pradyunsg/furo) | `2024.7.18` | `2024.8.6` |
    
    
    
    Updates `lxml` from 5.2.2 to 5.3.0
    - [Release notes](https://github.com/lxml/lxml/releases)
    - [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt)
    - [Commits](lxml/lxml@lxml-5.2.2...lxml-5.3.0)
    
    Updates `pyparsing` from 3.1.2 to 3.1.4
    - [Release notes](https://github.com/pyparsing/pyparsing/releases)
    - [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES)
    - [Commits](pyparsing/pyparsing@pyparsing_3.1.2...3.1.4)
    
    Updates `pycryptodome` from 3.20.0 to 3.21.0
    - [Release notes](https://github.com/Legrandin/pycryptodome/releases)
    - [Changelog](https://github.com/Legrandin/pycryptodome/blob/master/Changelog.rst)
    - [Commits](Legrandin/pycryptodome@v3.20.0...v3.21.0)
    
    Updates `holidays` from 0.53 to 0.57
    - [Release notes](https://github.com/vacanza/python-holidays/releases)
    - [Changelog](https://github.com/vacanza/python-holidays/blob/dev/CHANGES)
    - [Commits](vacanza/holidays@v0.53...v0.57)
    
    Updates `boto3` from 1.34.153 to 1.35.34
    - [Release notes](https://github.com/boto/boto3/releases)
    - [Commits](boto/boto3@1.34.153...1.35.34)
    
    Updates `mypy` from 1.11.1 to 1.11.2
    - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
    - [Commits](python/mypy@v1.11.1...v1.11.2)
    
    Updates `pytest` from 8.3.2 to 8.3.3
    - [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.2...8.3.3)
    
    Updates `boto3-stubs` from 1.34.153 to 1.35.34
    - [Release notes](https://github.com/youtype/mypy_boto3_builder/releases)
    - [Commits](https://github.com/youtype/mypy_boto3_builder/commits)
    
    Updates `types-python-dateutil` from 2.9.0.20240316 to 2.9.0.20241003
    - [Commits](https://github.com/python/typeshed/commits)
    
    Updates `types-pytz` from 2024.1.0.20240417 to 2024.2.0.20241003
    - [Commits](https://github.com/python/typeshed/commits)
    
    Updates `types-regex` from 2024.7.24.20240726 to 2024.9.11.20240912
    - [Commits](https://github.com/python/typeshed/commits)
    
    Updates `types-waitress` from 3.0.0.20240423 to 3.0.0.20241001
    - [Commits](https://github.com/python/typeshed/commits)
    
    Updates `certifi` from 2024.7.4 to 2024.8.30
    - [Commits](certifi/python-certifi@2024.07.04...2024.08.30)
    
    Updates `filelock` from 3.15.4 to 3.16.1
    - [Release notes](https://github.com/tox-dev/py-filelock/releases)
    - [Changelog](https://github.com/tox-dev/filelock/blob/main/docs/changelog.rst)
    - [Commits](tox-dev/filelock@3.15.4...3.16.1)
    
    Updates `regex` from 2024.7.24 to 2024.9.11
    - [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt)
    - [Commits](mrabarnett/mrab-regex@2024.7.24...2024.9.11)
    
    Updates `pytz` from 2024.1 to 2024.2
    - [Release notes](https://github.com/stub42/pytz/releases)
    - [Commits](stub42/pytz@release_2024.1...release_2024.2)
    
    Updates `pywin32` from 306 to 307
    - [Release notes](https://github.com/mhammond/pywin32/releases)
    - [Changelog](https://github.com/mhammond/pywin32/blob/main/CHANGES.txt)
    - [Commits](https://github.com/mhammond/pywin32/commits)
    
    Updates `ixbrl-viewer` from 1.4.30 to 1.4.36
    - [Release notes](https://github.com/Arelle/ixbrl-viewer/releases)
    - [Commits](Arelle/ixbrl-viewer@1.4.30...1.4.36)
    
    Updates `furo` from 2024.7.18 to 2024.8.6
    - [Release notes](https://github.com/pradyunsg/furo/releases)
    - [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md)
    - [Commits](pradyunsg/furo@2024.07.18...2024.08.06)
    
    ---
    updated-dependencies:
    - dependency-name: lxml
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: python-dependencies
    - dependency-name: pyparsing
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python-dependencies
    - dependency-name: pycryptodome
      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: boto3
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: python-dependencies
    - dependency-name: mypy
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: python-dependencies
    - dependency-name: pytest
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: python-dependencies
    - dependency-name: boto3-stubs
      dependency-type: direct:development
      update-type: version-update:semver-minor
      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-pytz
      dependency-type: direct:development
      update-type: version-update:semver-minor
      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: certifi
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: python-dependencies
    - dependency-name: filelock
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: python-dependencies
    - dependency-name: regex
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: python-dependencies
    - dependency-name: pytz
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: python-dependencies
    - dependency-name: pywin32
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: python-dependencies
    - dependency-name: ixbrl-viewer
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python-dependencies
    - dependency-name: furo
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: python-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 7, 2024
    Copy link
    Author

    dependabot bot commented on behalf of github Oct 14, 2024

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

    @dependabot dependabot bot closed this Oct 14, 2024
    @dependabot dependabot bot deleted the dependabot/pip/python-dependencies-9236d19ded branch October 14, 2024 10:26
    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