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

chore(deps): bump the pip-updates group across 1 directory with 8 updates #3298

Merged
merged 3 commits into from
May 11, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 6, 2024

Bumps the pip-updates group with 8 updates in the / directory:

Package From To
tinycss2 1.2.1 1.3.0
babel 2.14.0 2.15.0
dulwich 0.22.0 0.22.1
pytest 8.1.1 8.2.0
hypothesis 6.100.1 6.100.5
ipython 8.23.0 8.24.0
poethepoet 0.25.1 0.26.1
furo 2024.1.29 2024.5.6

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 babel from 2.14.0 to 2.15.0

Release notes

Sourced from babel's releases.

v2.15.0

The changelog below is auto-generated by GitHub.

The binary artifacts attached to this GitHub release were generated by the GitHub Actions workflow.

Please see CHANGELOG.rst for additional details.


What's Changed

New Contributors

Full Changelog: python-babel/babel@v2.14.0...v2.15.0

Changelog

Sourced from babel's changelog.

Version 2.15.0

Python version support


* Babel 2.15.0 will require Python 3.8 or newer. (:gh:`1048`)

Features


* CLDR: Upgrade to CLDR 44 (:gh:`1071`) (@akx)
* Dates: Support for the "fall back to short format" logic for time delta formatting (:gh:`1075`) (@akx)
* Message: More versatile .po IO functions (:gh:`1068`) (@akx)
* Numbers: Improved support for alternate spaces when parsing numbers (:gh:`1007`) (@ronnix's first contribution)

Infrastructure

  • Upgrade GitHub Actions (:gh:1054) (@​cclauss's first contribution)
  • The Unicode license is now included in locale-data and in the documentation (:gh:1074) (@​akx)
Commits
  • 40b194f Prepare for 2.15.0 release (#1079)
  • c2e6c6e Encode support for the "fall back to short format" logic for time delta forma...
  • 1a03526 Include Unicode license in locale-data and in documentation (#1074)
  • c0fb56e Allow alternative space characters as group separator when parsing numbers (#...
  • fe82fbc Use CLDR 44 and adjust tests to match new data (#1071)
  • e0d1018 Improve .po IO (#1068)
  • 40e60a1 Upgrade GitHub Actions (#1054)
  • 2a1709a Drop support for Python 3.7 (EOL since June 2023) (#1048)
  • See full diff in compare view

Updates dulwich from 0.22.0 to 0.22.1

Release notes

Sourced from dulwich's releases.

0.22.1

What's Changed

New Contributors

Full Changelog: jelmer/dulwich@dulwich-0.22.0...dulwich-0.22.1

Changelog

Sourced from dulwich's changelog.

0.22.1 2024-04-23

  • Handle alternate case for worktreeconfig setting (Will Shanks, #1285)

  • Ship rust files. (Jelmer Vernooij, #1287)

Commits

Updates pytest from 8.1.1 to 8.2.0

Release notes

Sourced from pytest's releases.

8.2.0

pytest 8.2.0 (2024-04-27)

Deprecations

  • #12069: A deprecation warning is now raised when implementations of one of the following hooks request a deprecated py.path.local parameter instead of the pathlib.Path parameter which replaced it:

    • pytest_ignore_collect{.interpreted-text role="hook"} - the path parameter - use collection_path instead.
    • pytest_collect_file{.interpreted-text role="hook"} - the path parameter - use file_path instead.
    • pytest_pycollect_makemodule{.interpreted-text role="hook"} - the path parameter - use module_path instead.
    • pytest_report_header{.interpreted-text role="hook"} - the startdir parameter - use start_path instead.
    • pytest_report_collectionfinish{.interpreted-text role="hook"} - the startdir parameter - use start_path instead.

    The replacement parameters are available since pytest 7.0.0. The old parameters will be removed in pytest 9.0.0.

    See legacy-path-hooks-deprecated{.interpreted-text role="ref"} for more details.

Features

  • #11871: Added support for reading command line arguments from a file using the prefix character @, like e.g.: pytest @tests.txt. The file must have one argument per line.

    See Read arguments from file <args-from-file>{.interpreted-text role="ref"} for details.

Improvements

  • #11523: pytest.importorskip{.interpreted-text role="func"} will now issue a warning if the module could be found, but raised ImportError{.interpreted-text role="class"} instead of ModuleNotFoundError{.interpreted-text role="class"}.

    The warning can be suppressed by passing exc_type=ImportError to pytest.importorskip{.interpreted-text role="func"}.

    See import-or-skip-import-error{.interpreted-text role="ref"} for details.

  • #11728: For unittest-based tests, exceptions during class cleanup (as raised by functions registered with TestCase.addClassCleanup <unittest.TestCase.addClassCleanup>{.interpreted-text role="meth"}) are now reported instead of silently failing.

  • #11777: Text is no longer truncated in the short test summary info section when -vv is given.

  • #12112: Improved namespace packages detection when consider_namespace_packages{.interpreted-text role="confval"} is enabled, covering more situations (like editable installs).

  • #9502: Added PYTEST_VERSION{.interpreted-text role="envvar"} environment variable which is defined at the start of the pytest session and undefined afterwards. It contains the value of pytest.__version__, and among other things can be used to easily check if code is running from within a pytest run.

Bug Fixes

  • #12065: Fixed a regression in pytest 8.0.0 where test classes containing setup_method and tests using @staticmethod or @classmethod would crash with AttributeError: 'NoneType' object has no attribute 'setup_method'.

    Now the request.instance <pytest.FixtureRequest.instance>{.interpreted-text role="attr"} attribute of tests using @staticmethod and @classmethod is no longer None, but a fresh instance of the class, like in non-static methods.

... (truncated)

Commits
  • 6bd3f31 Tweak changelog for 8.2.0
  • 9b6219b Prepare release version 8.2.0
  • 835765c Merge pull request #12130 from bluetech/fixtures-inline
  • 7e7503c unittest: report class cleanup exceptions (#12250)
  • 882c4da fixtures: inline fail_fixturefunc
  • 2e8fb9f fixtures: extract a _check_fixturedef method
  • acf2971 fixtures: inline _getnextfixturedef into _get_active_fixturedef
  • 3c77aec fixtures: move "request" check early
  • d217d68 fixtures: inline _compute_fixture_value
  • 530be28 fixtures: use early return in _get_active_fixturedef
  • Additional commits viewable in compare view

Updates hypothesis from 6.100.1 to 6.100.5

Commits
  • 4071c30 Bump hypothesis-python version to 6.100.5 and update changelog
  • 8182432 Merge pull request #3976 from ngoldbaum/free-threaded-random-fix
  • 00ea113 Respond to code review
  • 6bc57a4 Fix doc build warning
  • e2b96be Fix linter error
  • b53d4db add RELEASE.rst
  • a95cc4f Only check for free-threaded-build in gil_disabled function
  • c77a482 Do not warn about possibly unreferenced RNGs if the GIL is disabled
  • 26e8db7 Bump hypothesis-python version to 6.100.4 and update changelog
  • 683e691 Merge pull request #3971 from Zac-HD/composite-overload-warning
  • Additional commits viewable in compare view

Updates ipython from 8.23.0 to 8.24.0

Commits

Updates poethepoet from 0.25.1 to 0.26.1

Release notes

Sourced from poethepoet's releases.

v0.26.1

Fixes

Full Changelog: nat-n/poethepoet@v0.26.0...v0.26.1

v0.26.0

Enhancements and Fixes

Breaking changes

  • Relative paths for envfiles imported from within an included tasks file will now be resolved relative to the cwd path configured on the include (if any) nat-n/poethepoet#160

New Contributors

Full Changelog: nat-n/poethepoet@v0.25.1...v0.26.0

Commits
  • 4b66184 Bump version to 0.26.1
  • 0cb96ca Fix faulty validation of subtask names in sequence tasks (#219)
  • 0bd2a08 Bump version to 0.26.0
  • 4409ef2 Add passing test for #198
  • edb3383 Allow poetry plugin with empty command prefix to run tasks included from anot...
  • 6016f30 Add POE_PROJECT_DIR env var as default for -C option (#215)
  • 57ea176 Use -C and --directory for pyproject.toml directory path (#213)
  • 583e12b Major refactor of config classes and config include logic (#214)
  • See full diff in compare view

Updates furo from 2024.1.29 to 2024.5.6

Changelog

Sourced from furo's changelog.

Changelog

2024.05.06 -- Cheerful Cerulean

  • ✨ Add new custom icons for auto mode, reflecting the currently active theme.
  • ✨ Add a view this page button.
  • ✨ Add colours and highlighting to "version modified" API helpers.
  • ✨ Add release information to various customisation knobs.
  • Make all icons bigger and use a thinner stroke with them.

2024.04.27 -- Bold Burgundy

  • Add a skip to content link.
  • Add --font-stack--headings.
  • Add :visited colour and enforce uniform contrast between light/dark.
  • Add an offset of :target to reduce back-to-top overlap.
  • Improve dark mode colours.
  • Fix outstanding colour contrast warnings on Firefox.
  • Fix bad indent in footnotes.
  • Tweak handling of default configuration options in a more resilient manner.
  • Tweak length and sizing of API source links.
  • Stop search engine indexing on search page.

2024.01.29 -- Amazing Amethyst

  • Fix canonical url when building with dirhtml.
  • Relicense the demo module.

2023.09.10 -- Zesty Zaffre

  • Make asset hash injection idempotent, fixing Sphinx 6 compatibility.
  • Fix the check for HTML builders, fixing non-HTML Read the Docs builds.

2023.08.19 -- Xenolithic Xanadu

  • Fix missing search context with Sphinx 7.2, for dirhtml builds.
  • Drop support for Python 3.7.
  • Present configuration errors in a better format -- thanks @​AA-Turner!
  • Bump require_sphinx() to Sphinx 6.0, in line with dependency changes in Unassuming Ultramarine.

... (truncated)

Commits
  • b087e93 Prepare release: 2024.05.06
  • 169c63d Update the changelog
  • b7ec84d Drop discussion of Sphinx's basic theme
  • 2cd4d4a Demote the note about inherited from basic configuration
  • 983d6c3 Tweak the colours for API versionmodified information
  • 1ffbf76 Add release information to various customisation knobs
  • 2c386b9 Use the appropriate Sphinx directive instead of weird text
  • ec8815a Add (back?) support for RtD context inference on top of page buttons
  • 1b4cf89 Bump the npm group with 5 updates (#793)
  • ce8fb10 Bump the github-actions group with 3 updates (#792)
  • 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

…ates

Bumps the pip-updates group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tinycss2](https://github.com/Kozea/tinycss2) | `1.2.1` | `1.3.0` |
| [babel](https://github.com/python-babel/babel) | `2.14.0` | `2.15.0` |
| [dulwich](https://github.com/dulwich/dulwich) | `0.22.0` | `0.22.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.1.1` | `8.2.0` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.100.1` | `6.100.5` |
| [ipython](https://github.com/ipython/ipython) | `8.23.0` | `8.24.0` |
| [poethepoet](https://github.com/nat-n/poethepoet) | `0.25.1` | `0.26.1` |
| [furo](https://github.com/pradyunsg/furo) | `2024.1.29` | `2024.5.6` |



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 `babel` from 2.14.0 to 2.15.0
- [Release notes](https://github.com/python-babel/babel/releases)
- [Changelog](https://github.com/python-babel/babel/blob/master/CHANGES.rst)
- [Commits](python-babel/babel@v2.14.0...v2.15.0)

Updates `dulwich` from 0.22.0 to 0.22.1
- [Release notes](https://github.com/dulwich/dulwich/releases)
- [Changelog](https://github.com/jelmer/dulwich/blob/master/NEWS)
- [Commits](jelmer/dulwich@dulwich-0.22.0...dulwich-0.22.1)

Updates `pytest` from 8.1.1 to 8.2.0
- [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.1.1...8.2.0)

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

Updates `ipython` from 8.23.0 to 8.24.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.23.0...8.24.0)

Updates `poethepoet` from 0.25.1 to 0.26.1
- [Release notes](https://github.com/nat-n/poethepoet/releases)
- [Commits](nat-n/poethepoet@v0.25.1...v0.26.1)

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)

---
updated-dependencies:
- dependency-name: tinycss2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-updates
- dependency-name: babel
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-updates
- dependency-name: dulwich
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-updates
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-updates
- dependency-name: hypothesis
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-updates
- dependency-name: ipython
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-updates
- dependency-name: poethepoet
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-updates
- dependency-name: furo
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the skip-changelog Do not add this entry to the changelog label May 6, 2024
@danyeaw danyeaw merged commit e3c5bc0 into main May 11, 2024
19 checks passed
@danyeaw danyeaw deleted the dependabot/pip/pip-updates-7dc7dd811d branch May 11, 2024 19:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip-changelog Do not add this entry to the changelog
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant