Skip to content

Bump the dependencies group across 1 directory with 30 updates#132

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pip/dependencies-a23531a0b6
Open

Bump the dependencies group across 1 directory with 30 updates#132
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pip/dependencies-a23531a0b6

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Jun 24, 2024

Bumps the dependencies group with 30 updates in the / directory:

Package From To
lxml 5.1.0 5.2.2
openpyxl 3.1.2 3.1.4
pyparsing 3.1.1 3.1.2
python-dateutil 2.8.2 2.9.0.post0
pg8000 1.30.4 1.31.2
pymysql 1.1.0 1.1.1
holidays 0.42 0.51
tinycss2 1.2.1 1.3.0
graphviz 0.20.1 0.20.3
cheroot 10.0.0 10.0.1
cherrypy 18.9.0 18.10.0
tornado 6.4 6.4.1
certifi 2024.2.2 2024.6.2
regex 2023.12.25 2024.5.15
pycountry 23.12.11 24.6.1
pillow 10.2.0 10.3.0
ixbrl-viewer 1.4.18 1.4.28
flake8 7.0.0 7.1.0
mypy 1.8.0 1.10.0
pytest 8.0.1 8.2.2
typing-extensions 4.9.0 4.12.2
types-pymysql 1.1.0.1 1.1.0.20240524
types-python-dateutil 2.8.19.20240106 2.9.0.20240316
types-pytz 2024.1.0.20240203 2024.1.0.20240417
types-simplejson 3.19.0.20240218 3.19.0.20240310
types-ujson 5.9.0.0 5.10.0.20240515
types-regex 2023.12.25.20240106 2024.5.15.20240519
types-waitress 2.1.4.20240106 3.0.0.20240423
furo 2024.1.29 2024.5.6
myst-parser 2.0.0 3.0.1

Updates lxml from 5.1.0 to 5.2.2

Release notes

Sourced from lxml's releases.

lxml-5.2.2

5.2.2 (2024-05-12)

Bugs fixed

  • GH#417: The test_feed_parser test could fail if lxml_html_clean was not installed. It is now skipped in that case.

  • LP#2059910: The minimum CPU architecture for the Linux x86 binary wheels was set back to "core2", without SSE 4.2.

  • If libxml2 uses iconv, the compile time version is available as etree.ICONV_COMPILED_VERSION.

lxml-5.2.1

No release notes provided.

lxml-5.2.0

No release notes provided.

lxml-5.1.1

No release notes provided.

lxml-5.1.0-2

No release notes provided.

Changelog

Sourced from lxml's changelog.

5.2.2 (2024-05-12)

Bugs fixed

  • GH#417: The test_feed_parser test could fail if lxml_html_clean was not installed. It is now skipped in that case.

  • LP#2059910: The minimum CPU architecture for the Linux x86 binary wheels was set back to "core2", without SSE 4.2.

  • If libxml2 uses iconv, the compile time version is available as etree.ICONV_COMPILED_VERSION.

5.2.1 (2024-04-02)

Bugs fixed

  • LP#2059910: The minimum CPU architecture for the Linux x86 binary wheels was set back to "core2", but with SSE 4.2 enabled.

  • LP#2059977: Element.iterfind("//absolute_path") failed with a SyntaxError where it should have issued a warning.

  • GH#416: The documentation build was using the non-standard which command. Patch by Michał Górny.

5.2.0 (2024-03-30)

Other changes

  • LP#1958539: The lxml.html.clean implementation suffered from several (only if used) security issues in the past and was now extracted into a separate library:

    https://github.com/fedora-python/lxml_html_clean

    Projects that use lxml without "lxml.html.clean" will not notice any difference, except that they won't have potentially vulnerable code installed. The module is available as an "extra" setuptools dependency "lxml[html_clean]", so that Projects that need "lxml.html.clean" will need to switch their requirements from "lxml" to "lxml[html_clean]", or install the new library themselves.

  • The minimum CPU architecture for the Linux x86 binary wheels was upgraded to "sandybridge" (launched 2011), and glibc 2.28 / gcc 12 (manylinux_2_28) wheels were added.

... (truncated)

Commits
  • 8e4b14c Prepare release of lxml 5.2.2.
  • ddaa6ed Provide compile time version of libiconv as "etree.ICONV_COMPILED_VERSION".
  • 1ab00bd CI: Do not install lxml as dependency of "lxml_html_clean".
  • b325054 CI: Stop building LTO wheels to avoid messing with the library build cache.
  • 81624c2 CI: Exclude now-unsupported Python versions 3.6/7 from macOS jobs.
  • 069fa36 Fix typo.
  • e0df2ba Fix typo.
  • df55eaf Update changelog.
  • f3e77fa Remove dependency on SSE4 instructions, reverting back to "core2" as a target...
  • a22e83c Update changelog.
  • Additional commits viewable in compare view

Updates openpyxl from 3.1.2 to 3.1.4

Updates pyparsing from 3.1.1 to 3.1.2

Changelog

Sourced from pyparsing's changelog.

Version 3.1.2 - March, 2024

  • Added ieee_float expression to pyparsing.common, which parses float values, plus "NaN", "Inf", "Infinity". PR submitted by Bob Peterson (#538).

  • Updated pep8 synonym wrappers for better type checking compatibility. PR submitted by Ricardo Coccioli (#507).

  • Fixed empty error message bug, PR submitted by InSync (#534). This should return pyparsing's exception messages to a former, more helpful form. If you have code that parses the exception messages returned by pyparsing, this may require some code changes.

  • Added unit tests to test for exception message contents, with enhancement to pyparsing.testing.assertRaisesParseException to accept an expected exception message.

  • Updated example select_parser.py to use PEP8 names and added Groups for better retrieval of parsed values from multiple SELECT clauses.

  • Added example email_address_parser.py, as suggested by John Byrd (#539).

  • Added example directx_x_file_parser.py to parse DirectX template definitions, and generate a Pyparsing parser from a template to parse .x files.

  • Some code refactoring to reduce code nesting, PRs submitted by InSync.

  • All internal string expressions using '%' string interpolation and str.format() converted to f-strings.

Commits
  • 7d4bda2 Prep for 3.1.2 release
  • 9533fcb Add early break when checking warning inside a for loop
  • d252980 Update tox.ini to handle posargs when tox is run
  • a1b7aad Better exception messages for nested expressions; enhance assertRaisesParseEx...
  • 5d48b2d Added directx_x_file_parser.py example (parser + parser generator)
  • e13a03b Blackening (updated black)
  • 26e2180 Blackening
  • 670ba22 Convert legacy string formatting to f-strings; expand on some docstrings and ...
  • c19df25 Add CHANGES note for new ieee_float expression in pyparsing.common
  • 640d75b Accept floating-point NaN and Inf literals (#538)
  • Additional commits viewable in compare view

Updates python-dateutil from 2.8.2 to 2.9.0.post0

Release notes

Sourced from python-dateutil's releases.

2.9.0.post0

Version 2.9.0.post0 (2024-03-01)

Bugfixes

  • Pinned setuptools_scm to <8, which should make the generated _version.py file compatible with all supported versions of Python.

2.9.0

Version 2.9.0 (2024-02-29)

Data updates

  • Updated tzdata version to 2024a. (gh pr #1342)

Features

  • Made all dateutil submodules lazily imported using PEP 562. On Python 3.7+, things like import dateutil; dateutil.tz.gettz("America/New_York") will now work without explicitly importing dateutil.tz, with the import occurring behind the scenes on first use. The old behavior remains on Python 3.6 and earlier. Fixed by Orson Adams. (gh issue #771, gh pr #1007)

Bugfixes

  • Removed a call to datetime.utcfromtimestamp, which is deprecated as of Python 3.12. Reported by Hugo van Kemenade (gh pr #1284), fixed by Thomas Grainger (gh pr #1285).

Documentation changes

  • Added note into docs and tests where relativedelta would return last day of the month only if the same day on a different month resolves to a date that doesn't exist. Reported by @​hawkEye-01 (gh issue #1167). Fixed by @​Mifrill (gh pr #1168)
Changelog

Sourced from python-dateutil's changelog.

Version 2.9.0.post0 (2024-03-01)

Bugfixes

  • Pinned setuptools_scm to <8, which should make the generated _version.py file compatible with all supported versions of Python.

Version 2.9.0 (2024-02-29)

Data updates

  • Updated tzdata version to 2024a. (gh pr #1342)

Features

  • Made all dateutil submodules lazily imported using PEP 562 <https://www.python.org/dev/peps/pep-0562/>_. On Python 3.7+, things like import dateutil; dateutil.tz.gettz("America/New_York") will now work without explicitly importing dateutil.tz, with the import occurring behind the scenes on first use. The old behavior remains on Python 3.6 and earlier. Fixed by Orson Adams. (gh issue #771, gh pr #1007)

Bugfixes

  • Removed a call to datetime.utcfromtimestamp, which is deprecated as of Python 3.12. Reported by Hugo van Kemenade (gh pr #1284), fixed by Thomas Grainger (gh pr #1285).

Documentation changes

  • Added note into docs and tests where relativedelta would return last day of the month only if the same day on a different month resolves to a date that doesn't exist. Reported by @​hawkEye-01 (gh issue #1167). Fixed by @​Mifrill (gh pr #1168)
Commits
  • 1ae8077 Merge pull request #1346 from pganssle/release_2.9.0.post0
  • ee6de9d Update news to prepare for release
  • 9780d32 Pin setuptools_scm to <8
  • db9d018 Merge pull request #1343 from pganssle/release_2.9.0
  • 423ca2f Run updatezinfo before build
  • edd3fd4 Update NEWS file
  • fe02d02 Run towncrier with Python 3.11
  • 9c7524a Fix MANIFEST.in pattern
  • 6de58f5 Update classifiers to include Python 3.12
  • 8fe0cab Merge pull request #1342 from pganssle/update_zoneinfo
  • Additional commits viewable in compare view

Updates pg8000 from 1.30.4 to 1.31.2

Commits
  • 9945228 Prepare for new release
  • 0e6a319 Add tests for Python 3.12
  • 62a90d4 Non-ascii parameter statuses fail
  • e80fbb1 Update note on IN in README
  • 7ab7148 Add 'author' to pyproject
  • d0356d5 Tests: fixup for the dbname mentioned in a couple of SCRAM-related test comme...
  • 5ac331c Prepare for new release
  • 809bed8 Move to src style layout
  • c789c98 Prepare for new release
  • d815ef6 Better defaults for SSL
  • Additional commits viewable in compare view

Updates pymysql from 1.1.0 to 1.1.1

Release notes

Sourced from pymysql's releases.

v1.1.1

[!WARNING] This release fixes a vulnerability (CVE-2024-36039). All users are recommended to update to this version.

If you can not update soon, check the input value from untrusted source has an expected type. Only dict input from untrusted source can be an attack vector.

What's Changed

Merged PRs

New Contributors

Full Changelog: PyMySQL/PyMySQL@v1.1.0...v1.1.1

Changelog

Sourced from pymysql's changelog.

v1.1.1

Release date: 2024-05-21

[!WARNING] This release fixes a vulnerability (CVE-2024-36039). All users are recommended to update to this version.

If you can not update soon, check the input value from untrusted source has an expected type. Only dict input from untrusted source can be an attack vector.

  • Prohibit dict parameter for Cursor.execute(). It didn't produce valid SQL and might cause SQL injection. (CVE-2024-36039)
  • Added ssl_key_password param. #1145
Commits

Updates holidays from 0.42 to 0.51

Release notes

Sourced from holidays's releases.

v0.51

Version 0.51

Released June 17, 2024

Full Changelog: vacanza/holidays@v0.50...v0.51

v0.50

Version 0.50

Released June 3, 2024

New Contributors

Full Changelog: vacanza/holidays@v0.49...v0.50

v0.49

Version 0.49

Released May 20, 2024

... (truncated)

Changelog

Sourced from holidays's changelog.

Version 0.51

Released June 17, 2024

Version 0.50

Released June 3, 2024

Version 0.49

Released May 20, 2024

Version 0.48

Released May 6, 2024

... (truncated)

Commits

Updates tinycss2 from 1.2.1 to 1.3.0

Release notes

Sourced from tinycss2's releases.

v1.3.0

  • Support CSS nesting
  • Deprecate parse_declaration_list, use parse_blocks_contents instead
Changelog

Sourced from tinycss2's changelog.

Version 1.3.0

Released on 2024-04-23.

  • Support CSS nesting
  • Deprecate parse_declaration_list, use parse_blocks_contents instead
Commits
  • dab0f9a Merge pull request #57 from Kozea/ruff
  • 589d7c0 Mark Python 3.12 as officially supported
  • c07ce3e Use ruff instead of flake8 and isort
  • dc922eb Fix default branch for documentation CI
  • 309ad43 Document and use parse_blocks_contents everywhere
  • 6398302 Merge pull request #55 from Kozea/nested-css
  • 62b23f7 Update parsing tests suite version
  • 3ae5513 Implement new CSS syntax draft
  • f695870 Take care of declaration first token
  • 21dd31a Split deprecated and new functions
  • Additional commits viewable in compare view

Updates graphviz from 0.20.1 to 0.20.3

Changelog

Sourced from graphviz's changelog.

Version 0.20.3

Revert improvements to the internal tools.deprecate_positional_args() decorator that caused false positive PendingDeprecationWarning: The signature of ... will be reduced warnings that have been misinterpreted in the 0.20.2 release process.

Version 0.20.2

Drop Python 3.7 support (end of life 27 Jun 2023).

Tag Python 3.11 and 3.12 support.

Add caveat about labe escaping/quoting to .node() and .render() API docs.

Document that doctest_skip_exe() lines in doctest should be ignored.

Improve internal tools.deprecate_positional_args() decorator and fix incorect test assertion.

Update GitHub actions.

Pin pytest test dependency to <8.1 as a workaround for import file mismatch error related to conftest.py files, in pytest 8.1.1, see pytest-dev/pytest#12123.

Commits
  • cbfbead release 0.20.3
  • dbdef1f Better document pytest version pinning
  • 8d8c659 Revert "ignore own signature-related deprecation warnings in release process"
  • 195855c Revert "fix number of positional arguments in deprecation warning messages"
  • 78daf45 bump version for development
  • 34fb16b release 0.20.2
  • 7fab480 ignore own signature-related deprecation warnings in release process
  • 09e2161 run update-help.py with Python 3.12
  • 24507fc document excluded pytest 8.1.1 version
  • 7fb9191 fix inline literal start-string without end-string
  • Additional commits viewable in compare view

Updates cheroot from 10.0.0 to 10.0.1

Changelog

Sourced from cheroot's changelog.

v10.0.1

(2024-04-22)

Bug fixes

  • Fixed a flaw where internally unhandled exceptions could crash the worker threads and eventually starve the server of its processing resources. It is no longer and issue and the unhandled errors are now logged and suppressed except for a few expected exceptions that are used for normal interruption requests.

    -- by :user:cameronbrunner and :user:webknjaz

    Related issues and pull requests on GitHub: :issue:310, :issue:346, :issue:354, :issue:358, :issue:365, :issue:375, :issue:599, :issue:641, :issue:649.

  • Fixed compatibility with Python 3.8 in the built-in TLS adapter that relies on :py:mod:python:ssl.

    Modern Python versions communicate specialized exceptions :py:exc:ssl.SSLEOFError and :py:exc:ssl.SSLZeroReturnError where the older versions errored out in a very generic way.

    -- by :user:toppk and :user:webknjaz

    Related issues and pull requests on GitHub: :issue:517, :issue:518.

Packaging updates and notes for downstreams

  • Started signing the package distribution artifacts in CI/CD with Sigstore and uploading them to GitHub Releases -- by :user:webknjaz.

    Related commits on GitHub: :commit:27a3c944, :commit:c45f184e.

  • The changelog management is now implemented through the :std:doc:Towncrier <towncrier:index> tool -- by :user:webknjaz.

    The contributors are now expected to :std:ref:`include

... (truncated)

Commits
  • 1391e71 Generate a change log entry for v10.0.1
  • c00f21b Revert "📝 Add a change note for PR #628"
  • 78a5e42 🧪 Make flaky tests on PyPy 3.6 + Ubuntu as xfail
  • 0da426b 📝🔥 Drop the Python 3.6 support drop change note
  • 7184939 🧪 Make Sphinx not fail on warnings
  • a9b77d3 🧪 Drop ubuntu 20.04 + pypy 3.6 from CI matrix
  • 935395b 🧪 Fix test compatibility with Python 3.6
  • 688fc83 Revert "Merge pull request #633 from cherrypy/debt/drop-py37"
  • 3591a1c 💅 Keep empty line separators next to YAML marks
  • 140f2cb 📝 Link the Towncrier docs via intersphinx
  • Additional commits viewable in compare view

Updates cherrypy from 18.9.0 to 18.10.0

Changelog

Sourced from cherrypy's changelog.

v18.10.0

  • Removed the use of :mod:cgi deprecated in Python 3.11 -- by :user:radez.
  • Various changes <https://github.com/cherrypy/cherrypy/compare/v18.9.0...7104cfb3cfc6e6582f0773529142d777b1aff1bd>_.
Commits
  • d1eb64e Update changelog
  • 5619475 Merge pull request #2021 from radez/cgi_copy
  • 975e3d4 Replace explanation with link to more detailed explanation.
  • 9740750 Moved header parsing to lib/headers.
  • 7104cfb Merge pull request #2030 from radez/fix_dist
  • cb4c100 Update GHA sdist name to lowercase for new setuptools
  • 1073610 Merge pull request #2023 from fabaff/patch-1
  • 8a19dd5 Replace distutils.spawn.find_executable with shutil.which
  • fe764cb 🔧 Stop using the cgi stdlib module
  • 657366e 🔥📝 Drop the in-repo security policy
  • Additional commits viewable in compare view

Updates tornado from 6.4 to 6.4.1

Changelog

Sourced from tornado's changelog.

Release notes

.. toctree:: :maxdepth: 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 releases/v2.3.0

... (truncated)

Commits
  • 2a0e1d1 Merge pull request #3388 from bdarnell/release-641
  • b7af4e8 Release notes and version bump for version 6.4.1
  • d65f6e7 Merge pull request #3387 from bdarnell/chunked-parsing
  • 8d721a8 httputil: Only strip tabs and spaces from header values
  • 7786f09 Merge pull request #3386 from bdarnell/curl-crlf
  • fb119c7 http1connection: Stricter handling of transfer-encoding
  • b0ffc58 curl_httpclient,http1connection: Prohibit CR and LF in headers
  • 0efa9a4 Merge pull request #3385 from bdarnell/update-black
  • 2757c6e Merge pull request #3384 from tornadoweb/dependabot/pip/requests-2.32.2
  • 291d1b6 *: Update black
  • Additional commits viewable in compare view

Updates certifi from 2024.2.2 to 2024.6.2

Commits
  • 124f4ad 2024.06.02 (#291)
  • c2196ce --- (#290)
  • fefdeec Bump actions/checkout from 4.1.4 to 4.1.5 (#289)
  • 3c5fb15 Bump actions/download-artifact from 4.1.6 to 4.1.7 (#286)
  • 4a9569a Bump actions/checkout from 4.1.2 to 4.1.4 (#287)
  • 1fc8086 Bump peter-evans/create-pull-request from 6.0.4 to 6.0.5 (#288)
  • ad52dce Bump peter-evans/create-pull-request from 6.0.3 to 6.0.4 (#283)
  • 651904f Bump actions/upload-artifact from 4.3.1 to 4.3.3 (#284)
  • 84fcfba Bump actions/download-artifact from 4.1.4 to 4.1.6 (#285)
  • 46b8057 Bump peter-evans/create-pull-request from 6.0.2 to 6.0.3 (#282)
  • Additional commits viewable in compare view

Updates regex from 2023.12.25 to 2024.5.15

Changelog

Sourced from regex's changelog.

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.

Version: 2023.12.24

Fixed invalid main.yml.

Version: 2023.12.23

The escape function no longer escapes \x00. It's not necessary.

Inline flags can now be turned off and apply to what follows.

Added \R to match line endings.

Version: 2023.10.3

Updated to Unicode 15.1.0.

Version: 2023.8.8

Git issue 508: Regex doesn't build using CPython main (3.13.0a0)
Removed usage of _PyBytes_Join and did a little tidying of the code that makes the result string.

... (truncated)

Commits
  • 8eabb42 Git issue 530: hangs with fuzzy and optionals
  • be139ff Updated for Python 3.13.
  • 2e3272b Git issue 527: VERBOSE/X flag breaks \N escapes
  • 9c950f2 Updated changelog.
  • 5d65c8a Git issue 525: segfault when fuzzy matching empty list
  • 4f2ed52 Cannot get release notification action in main.yml to work. Commenting it out...
  • See full diff in compare view

Updates pycountry from 23.12.11 to 24.6.1

Changelog

Sourced from pycountry's changelog.

24.6.1 (2024-06-01)

  • Breaking change: Reverted the fallback to name when country common_name or official_name attributes not available, which was added in 23.12.11.

  • Fixed import of importlib_metadata to importlib.metadata

  • Fixed bug causing parent subdivision codes to be returned with additional country code preceding (i.e. GB-GB-ENG instead of GB-ENG)

  • Update to iso-codes 4.16.0. (Thanks to musicinmybrain!)

Commits
  • 7c51a88 Merge pull requ...

    Description has been truncated

Bumps the dependencies group with 30 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [lxml](https://github.com/lxml/lxml) | `5.1.0` | `5.2.2` |
| [openpyxl](https://openpyxl.readthedocs.io) | `3.1.2` | `3.1.4` |
| [pyparsing](https://github.com/pyparsing/pyparsing) | `3.1.1` | `3.1.2` |
| [python-dateutil](https://github.com/dateutil/dateutil) | `2.8.2` | `2.9.0.post0` |
| [pg8000](https://github.com/tlocke/pg8000) | `1.30.4` | `1.31.2` |
| [pymysql](https://github.com/PyMySQL/PyMySQL) | `1.1.0` | `1.1.1` |
| [holidays](https://github.com/vacanza/python-holidays) | `0.42` | `0.51` |
| [tinycss2](https://github.com/Kozea/tinycss2) | `1.2.1` | `1.3.0` |
| [graphviz](https://github.com/xflr6/graphviz) | `0.20.1` | `0.20.3` |
| [cheroot](https://github.com/cherrypy/cheroot) | `10.0.0` | `10.0.1` |
| [cherrypy](https://github.com/cherrypy/cherrypy) | `18.9.0` | `18.10.0` |
| [tornado](https://github.com/tornadoweb/tornado) | `6.4` | `6.4.1` |
| [certifi](https://github.com/certifi/python-certifi) | `2024.2.2` | `2024.6.2` |
| [regex](https://github.com/mrabarnett/mrab-regex) | `2023.12.25` | `2024.5.15` |
| [pycountry](https://github.com/flyingcircusio/pycountry) | `23.12.11` | `24.6.1` |
| [pillow](https://github.com/python-pillow/Pillow) | `10.2.0` | `10.3.0` |
| [ixbrl-viewer](https://github.com/Arelle/ixbrl-viewer) | `1.4.18` | `1.4.28` |
| [flake8](https://github.com/pycqa/flake8) | `7.0.0` | `7.1.0` |
| [mypy](https://github.com/python/mypy) | `1.8.0` | `1.10.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.0.1` | `8.2.2` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.9.0` | `4.12.2` |
| [types-pymysql](https://github.com/python/typeshed) | `1.1.0.1` | `1.1.0.20240524` |
| [types-python-dateutil](https://github.com/python/typeshed) | `2.8.19.20240106` | `2.9.0.20240316` |
| [types-pytz](https://github.com/python/typeshed) | `2024.1.0.20240203` | `2024.1.0.20240417` |
| [types-simplejson](https://github.com/python/typeshed) | `3.19.0.20240218` | `3.19.0.20240310` |
| [types-ujson](https://github.com/python/typeshed) | `5.9.0.0` | `5.10.0.20240515` |
| [types-regex](https://github.com/python/typeshed) | `2023.12.25.20240106` | `2024.5.15.20240519` |
| [types-waitress](https://github.com/python/typeshed) | `2.1.4.20240106` | `3.0.0.20240423` |
| [furo](https://github.com/pradyunsg/furo) | `2024.1.29` | `2024.5.6` |
| [myst-parser](https://github.com/executablebooks/MyST-Parser) | `2.0.0` | `3.0.1` |



Updates `lxml` from 5.1.0 to 5.2.2
- [Release notes](https://github.com/lxml/lxml/releases)
- [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt)
- [Commits](lxml/lxml@lxml-5.1.0...lxml-5.2.2)

Updates `openpyxl` from 3.1.2 to 3.1.4

Updates `pyparsing` from 3.1.1 to 3.1.2
- [Release notes](https://github.com/pyparsing/pyparsing/releases)
- [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES)
- [Commits](pyparsing/pyparsing@3.1.1...pyparsing_3.1.2)

Updates `python-dateutil` from 2.8.2 to 2.9.0.post0
- [Release notes](https://github.com/dateutil/dateutil/releases)
- [Changelog](https://github.com/dateutil/dateutil/blob/master/NEWS)
- [Commits](dateutil/dateutil@2.8.2...2.9.0.post0)

Updates `pg8000` from 1.30.4 to 1.31.2
- [Commits](https://github.com/tlocke/pg8000/compare/1.30.4...1.31.2)

Updates `pymysql` from 1.1.0 to 1.1.1
- [Release notes](https://github.com/PyMySQL/PyMySQL/releases)
- [Changelog](https://github.com/PyMySQL/PyMySQL/blob/main/CHANGELOG.md)
- [Commits](PyMySQL/PyMySQL@v1.1.0...v1.1.1)

Updates `holidays` from 0.42 to 0.51
- [Release notes](https://github.com/vacanza/python-holidays/releases)
- [Changelog](https://github.com/vacanza/python-holidays/blob/dev/CHANGES)
- [Commits](vacanza/holidays@v0.42...v0.51)

Updates `tinycss2` from 1.2.1 to 1.3.0
- [Release notes](https://github.com/Kozea/tinycss2/releases)
- [Changelog](https://github.com/Kozea/tinycss2/blob/main/docs/changelog.rst)
- [Commits](Kozea/tinycss2@v1.2.1...v1.3.0)

Updates `graphviz` from 0.20.1 to 0.20.3
- [Changelog](https://github.com/xflr6/graphviz/blob/master/CHANGES.rst)
- [Commits](xflr6/graphviz@0.20.1...0.20.3)

Updates `cheroot` from 10.0.0 to 10.0.1
- [Release notes](https://github.com/cherrypy/cheroot/releases)
- [Changelog](https://github.com/cherrypy/cheroot/blob/main/CHANGES.rst)
- [Commits](cherrypy/cheroot@v10.0.0...v10.0.1)

Updates `cherrypy` from 18.9.0 to 18.10.0
- [Changelog](https://github.com/cherrypy/cherrypy/blob/main/CHANGES.rst)
- [Commits](cherrypy/cherrypy@v18.9.0...v18.10.0)

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

Updates `certifi` from 2024.2.2 to 2024.6.2
- [Commits](certifi/python-certifi@2024.02.02...2024.06.02)

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

Updates `pycountry` from 23.12.11 to 24.6.1
- [Changelog](https://github.com/pycountry/pycountry/blob/main/HISTORY.txt)
- [Commits](pycountry/pycountry@23.12.11...24.6.1)

Updates `pillow` from 10.2.0 to 10.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@10.2.0...10.3.0)

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

Updates `flake8` from 7.0.0 to 7.1.0
- [Commits](PyCQA/flake8@7.0.0...7.1.0)

Updates `mypy` from 1.8.0 to 1.10.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.8.0...v1.10.0)

Updates `pytest` from 8.0.1 to 8.2.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.0.1...8.2.2)

Updates `typing-extensions` from 4.9.0 to 4.12.2
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.9.0...4.12.2)

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

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

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

Updates `types-simplejson` from 3.19.0.20240218 to 3.19.0.20240310
- [Commits](https://github.com/python/typeshed/commits)

Updates `types-ujson` from 5.9.0.0 to 5.10.0.20240515
- [Commits](https://github.com/python/typeshed/commits)

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

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

Updates `furo` from 2024.1.29 to 2024.5.6
- [Release notes](https://github.com/pradyunsg/furo/releases)
- [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md)
- [Commits](pradyunsg/furo@2024.01.29...2024.05.06)

Updates `myst-parser` from 2.0.0 to 3.0.1
- [Release notes](https://github.com/executablebooks/MyST-Parser/releases)
- [Changelog](https://github.com/executablebooks/MyST-Parser/blob/master/CHANGELOG.md)
- [Commits](executablebooks/MyST-Parser@v2.0.0...v3.0.1)

---
updated-dependencies:
- dependency-name: lxml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: openpyxl
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pyparsing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: python-dateutil
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pg8000
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pymysql
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: holidays
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tinycss2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: graphviz
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cheroot
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cherrypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tornado
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: pycountry
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: pillow
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ixbrl-viewer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: flake8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typing-extensions
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: types-pymysql
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: types-python-dateutil
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: types-pytz
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: types-simplejson
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: types-ujson
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: types-regex
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: types-waitress
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: furo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: myst-parser
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: 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 Jun 24, 2024
@dependabot dependabot bot deployed to integration-tests June 24, 2024 09:05 Active
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
@dependabot dependabot bot had a problem deploying to integration-tests June 24, 2024 09:07 Failure
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