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 other group across 1 directory with 9 updates #522

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the other group with 9 updates in the / directory:

Package From To
packaging 24.1 24.2
urlscan 1.0.3 1.0.6
pytest-cov 5.0.0 6.0.0
pylint 3.3.1 3.3.2
mypy 1.12.1 1.14.0
pyupgrade 3.18.0 3.19.1
rich 13.9.2 13.9.4
pytest-exasol-itde 0.2.0 0.2.1
exasol-toolbox 0.19.0 0.20.0

Updates packaging from 24.1 to 24.2

Release notes

Sourced from packaging's releases.

24.2

What's Changed

New Contributors

Full Changelog: pypa/packaging@24.1...24.2

Changelog

Sourced from packaging's changelog.

24.2 - 2024-11-08


* PEP 639: Implement License-Expression and License-File (:issue:`828`)
* Use ``!r`` formatter for error messages with filenames (:issue:`844`)
* Add support for PEP 730 iOS tags (:issue:`832`)
* Fix prerelease detection for ``>`` and ``<`` (:issue:`794`)
* Fix uninformative error message (:issue:`830`)
* Refactor ``canonicalize_version`` (:issue:`793`)
* Patch python_full_version unconditionally (:issue:`825`)
* Fix doc for ``canonicalize_version`` to mention ``strip_trailing_zero`` and a typo in a docstring (:issue:`801`)
* Fix typo in Version ``__str__`` (:issue:`817`)
* Support creating a ``SpecifierSet`` from an iterable of ``Specifier`` objects (:issue:`775`)
Commits
  • d8e3b31 Bump for release
  • 2de393d Update changelog for release
  • 9c66f5c Remove extraneous quotes in f-strings by using !r (#848)
  • 4dc334c Upgrade to latest mypy (#853)
  • d1a9f93 Bump the github-actions group with 4 updates (#852)
  • 029f415 PEP 639: Implement License-Expression and License-File (#828)
  • 6c338a8 Use !r formatter for error messages with filenames. (#844)
  • 28e7da7 Add a comment as to why Metadata.name isn't normalized (#842)
  • ce0d79c Mention updating changelog in release process (#841)
  • ac5bdf3 Update the changelog to reflect 24.1 changes (#840)
  • Additional commits viewable in compare view

Updates urlscan from 1.0.3 to 1.0.6

Release notes

Sourced from urlscan's releases.

1.0.6

No release notes provided.

1.0.4

  • Github action update to release to pypi and github on tag push and release to testpypi on commit.
  • Keybindings for page up/down
Commits
  • 90dfe44 Bugfix in GitHub Action
  • 7c55eb3 Correctly enter github release title/notes and update README for release process
  • a418d6b Merge branch 'main' of github.com:firecat53/urlscan
  • 16a20aa Admin updates
  • 428d10a Merge branch 'develop'
  • 555f330 Admin updates
  • 12f1363 Merge branch 'develop'
  • c8f8519 Simplify and update Action workflow to release to GH and PyPi on tag pushes a...
  • 9ecd24d Add hatchling and hatch-vcs to action
  • 37b092e Bugfix/update github action
  • Additional commits viewable in compare view

Updates pytest-cov from 5.0.0 to 6.0.0

Changelog

Sourced from pytest-cov's changelog.

6.0.0 (2024-10-29)

  • Updated various documentation inaccuracies, especially on subprocess handling.
  • Changed fail under checks to use the precision set in the coverage configuration. Now it will perform the check just like coverage report would.
  • Added a --cov-precision cli option that can override the value set in your coverage configuration.
  • Dropped support for now EOL Python 3.8.
Commits
  • 9540437 Bump version: 5.0.0 → 6.0.0
  • 9f81754 Further trim down envs and drop Python 3.8.
  • b12b5ec Update conf.
  • 23f4b27 Update changelog.
  • 291a04f Bump test deps and trim config.
  • 08f1101 Add --cov-precision option. Close #655.
  • 76fe2a7 Move the warnings/errors in a place that doesn't import anything.
  • a9ea7b7 Implement error/warning for the bad dynamic_context being set in config.
  • c299e01 Add explicit suffixing to make it easier to see the identify the sources/usag...
  • c87e546 Add reproducer for weird xdist dynamic_context interaction. Ref #604.
  • Additional commits viewable in compare view

Updates pylint from 3.3.1 to 3.3.2

Commits

Updates mypy from 1.12.1 to 1.14.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

...

Mypy 1.14

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

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Change to Enum Membership Semantics

As per the updated typing specification for enums, enum members must be left unannotated.

class Pet(Enum):
    CAT = 1  # Member attribute
    DOG = 2  # Member attribute
# New error: Enum members must be left unannotated
WOLF: int = 3
species: str  # Considered a non-member attribute

In particular, the specification change can result in issues in type stubs (.pyi files), since historically it was common to leave the value absent:

# In a type stub (.pyi file)
class Pet(Enum):
# Change in semantics: previously considered members,
# now non-member attributes
CAT: int
DOG: int
# Mypy will now issue a warning if it detects this
# situation in type stubs:
# &gt; Detected enum &quot;Pet&quot; in a type stub with zero
# &gt; members. There is a chance this is due to a recent
# &gt; change in the semantics of enum membership. If so,
# &gt; use `member = value` to mark an enum member,

</tr></table>

... (truncated)

Commits

Updates pyupgrade from 3.18.0 to 3.19.1

Commits
  • ce40a16 v3.19.1
  • 2f55fde Merge pull request #994 from asottile/fstring-find-call
  • 832a3a0 fix search for .encode(...) call with 3.12+ f-string tokens
  • 7dc1fb3 Merge pull request #993 from asottile/upgrade-gha
  • 3f8ae67 upgrade gha
  • 67705a4 Merge pull request #992 from asottile/typo-module-name
  • b36f0ad fix typo in module name
  • ead7440 Merge pull request #985 from asottile/pre-commit-ci-update-config
  • 8f6385c [pre-commit.ci] pre-commit autoupdate
  • dea830d Merge pull request #974 from asottile/pre-commit-ci-update-config
  • Additional commits viewable in compare view

Updates rich from 13.9.2 to 13.9.4

Release notes

Sourced from rich's releases.

The Faster is Faster release

[13.9.4] - 2024-11-01

Changed

The irregular expression release

Fix a broken regex that resulted in the slow path being chosen for some operations. This fix should result in notable speedups for some operations, such as wrapping text.

[13.9.3] - 2024-10-22

Fixed

Changelog

Sourced from rich's changelog.

[13.9.4] - 2024-11-01

Changed

[13.9.3] - 2024-10-22

Fixed

Commits

Updates pytest-exasol-itde from 0.2.0 to 0.2.1

Updates exasol-toolbox from 0.19.0 to 0.20.0

Release notes

Sourced from exasol-toolbox's releases.

0.20.0 - 2024-12-17

🚨 Breaking Changes

  • Matrices in CI/CD workflows will be generated automatically now

    Make sure you have installed all the latest workflow files, especially the newly added ones:

    • matrix-all.yml
    • matrix-python.yml
    • matrix-exasol.yml

✨ Added

  • Added support for dynamically generated workflow matrices.

    This feature allows you to easily change the test matrices in one place: noxconfig.py.

    Note: As usual, there are different ways a user can adjust or change the behavior. In the case of the build matrices, there are three obvious ways:

    • Set the appropriate fields in the noxconfig.py project configuration (PROJECT_CONFIG):
      • python_versions = [ ... ]
      • exasol_versions = [ ... ]
    • Overwrite the nox tasks:
      • matrix:all
      • matrix:python
      • matrix:exasol
    • Overwrite/replace the matrix generation workflows:
      • matrix-all.yml
      • matrix-python.yml
      • matrix-exasol.yml

    Among all of the above, the safest way is to set the matrix-related fields in your project config object in noxconfig.py.

  • Added a nox task to validate the build/test artifacts and use it in the github workflow report

📚 Documentation

  • Added new entries to the frequently asked questions regarding multiversion documentation

🐞 Fixed

  • Fixed index.rst documentation template to provide the correct underlining length of the main heading
  • Added multi-version extension to Sphinx configuration of the project template
  • fixed bug in tbx worflow install error if directory exists #298 also #297

🔩 Internal

  • Relocked dependencies
Commits
  • 50d4f43 Prepare release 0.20.0 (#316)
  • c220329 Relock dependencies 2024-12-16 (#315)
  • bdadd90 Fix names in GitHub workflows (#300)
  • bdff2a1 Fix creating workflow if if directory .github/workflows already exists #298 (...
  • e1b4e50 Add nox task to validate build/test artifacts (#311)
  • 6d9f38c Fix the index.rst documentation template (#310)
  • 167672f Add support for dynamic build matrix generation (#313)
  • 1a77d9f Update faq (#309)
  • 1efa3b5 Add multi-version extension to Sphinx configuration of the project template (...
  • See full diff 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

Bumps the other group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [packaging](https://github.com/pypa/packaging) | `24.1` | `24.2` |
| [urlscan](https://github.com/firecat53/urlscan) | `1.0.3` | `1.0.6` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `5.0.0` | `6.0.0` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.3.1` | `3.3.2` |
| [mypy](https://github.com/python/mypy) | `1.12.1` | `1.14.0` |
| [pyupgrade](https://github.com/asottile/pyupgrade) | `3.18.0` | `3.19.1` |
| [rich](https://github.com/Textualize/rich) | `13.9.2` | `13.9.4` |
| pytest-exasol-itde | `0.2.0` | `0.2.1` |
| [exasol-toolbox](https://github.com/exasol/python-toolbox) | `0.19.0` | `0.20.0` |



Updates `packaging` from 24.1 to 24.2
- [Release notes](https://github.com/pypa/packaging/releases)
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
- [Commits](pypa/packaging@24.1...24.2)

Updates `urlscan` from 1.0.3 to 1.0.6
- [Release notes](https://github.com/firecat53/urlscan/releases)
- [Commits](firecat53/urlscan@1.0.3...1.0.6)

Updates `pytest-cov` from 5.0.0 to 6.0.0
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v5.0.0...v6.0.0)

Updates `pylint` from 3.3.1 to 3.3.2
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.3.1...v3.3.2)

Updates `mypy` from 1.12.1 to 1.14.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.12.1...v1.14.0)

Updates `pyupgrade` from 3.18.0 to 3.19.1
- [Commits](asottile/pyupgrade@v3.18.0...v3.19.1)

Updates `rich` from 13.9.2 to 13.9.4
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.9.2...v13.9.4)

Updates `pytest-exasol-itde` from 0.2.0 to 0.2.1

Updates `exasol-toolbox` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/exasol/python-toolbox/releases)
- [Commits](exasol/python-toolbox@0.19.0...0.20.0)

---
updated-dependencies:
- dependency-name: packaging
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: urlscan
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: pytest-cov
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: other
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: pyupgrade
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: rich
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: pytest-exasol-itde
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: exasol-toolbox
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
...

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 Dec 23, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 30, 2024

Superseded by #523.

@dependabot dependabot bot closed this Dec 30, 2024
@dependabot dependabot bot deleted the dependabot/pip/other-f59fe6b971 branch December 30, 2024 12:24
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