Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 26, 2024

Bumps the python-requirements group with 7 updates:

Package From To
fixedint 0.1.6 0.2.0
importlib-metadata 8.0.0 8.4.0
msgraph-sdk 1.1.0 1.5.4
numpy 2.0.1 2.1.0
opentelemetry-instrumentation-openai 0.27.0 0.28.1
psutil 5.9.8 6.0.0
pydantic-core 2.20.1 2.23.0

Updates fixedint from 0.1.6 to 0.2.0

Changelog

Sourced from fixedint's changelog.

v0.2.0, 2020-09-16: Add type hints (GH #4) Removed the broken MutableFixedInt.itruediv Added base argument to FixedInt constructor

Commits
  • c6f9439 Version bump to v0.2.0
  • 035bdca Add py.typed and .pyi files to setup.py
  • b25aadc Documentation updates
  • 418c239 Add type hints. Fixes #4.
  • d2dbd20 Remove MutableFixedInt.itruediv (doesn't make sense), add base argument t...
  • See full diff in compare view

Updates importlib-metadata from 8.0.0 to 8.4.0

Changelog

Sourced from importlib-metadata's changelog.

v8.4.0

Features

  • Deferred import of inspect for import performance. (#499)

v8.3.0

Features

  • Disallow passing of 'dist' to EntryPoints.select.

v8.2.0

Features

  • Add SimplePath to importlib_metadata.all. (#494)

v8.1.0

Features

  • Prioritize valid dists to invalid dists when retrieving by name. (#489)
Commits

Updates msgraph-sdk from 1.1.0 to 1.5.4

Release notes

Sourced from msgraph-sdk's releases.

v1.5.4

1.5.4 (2024-08-02)

Bug Fixes

  • requires a higher version of the JSON dependency (955f85f)

v1.5.3

1.5.3 (2024-07-17)

Bug Fixes

  • higher kiota abstractions requirement to avoid missing multipart (d6c9f86)

v1.5.2

1.5.2 (2024-07-10)

Bug Fixes

  • fixes module name for release (941f6b2)

v1.5.1

1.5.1 (2024-07-09)

Bug Fixes

  • avoid using default mutable arguments (4912f5a)

Documentation

v1.4.0

Changed

  • Weekly generation with Kiota - 7th May 2024
  • Updated Request Configuration set up, allowing for default request Configuration as well as the Request builder custom Requestconfiguration for backward compatibility.

v1.3.0

Changed

  • Weekly generation with Kiota.

v1.2.0

... (truncated)

Changelog

Sourced from msgraph-sdk's changelog.

1.5.4 (2024-08-02)

Bug Fixes

  • requires a higher version of the JSON dependency (955f85f)

1.5.3 (2024-07-17)

Bug Fixes

  • higher kiota abstractions requirement to avoid missing multipart (d6c9f86)

1.5.2 (2024-07-10)

Bug Fixes

  • fixes module name for release (941f6b2)

1.5.1 (2024-07-09)

Bug Fixes

  • avoid using default mutable arguments (4912f5a)

Documentation

[1.5.0] - 2024-05-23

Changed

  • Weekly generation with Kiota - 21st May 2024

[1.4.0] - 2024-05-08

Changed

  • Weekly generation with Kiota - 7th May 2024
  • Updated Request Configuration set up, allowing for default request Configuration as well as the Request builder custom Requestconfiguration for backward compatibility.

[1.3.0] - 2024-04-16

Changed

... (truncated)

Commits
  • 9088e46 Merge pull request #839 from microsoftgraph/release-please--branches--main--c...
  • b9ded0e chore(main): release 1.5.4
  • 955f85f fix: requires a higher version of the JSON dependency
  • 5ee9548 bump json serializer to >=1.3.0
  • 40a35b8 Merge pull request #836 from microsoftgraph/dependabot/pip/pyjwt-2.9.0
  • 01f1e3f chore(deps-dev): bump pyjwt from 2.8.0 to 2.9.0
  • 2cff720 Merge pull request #833 from microsoftgraph/dependabot/pip/mypy-1.11.1
  • 2a1cedc chore(deps-dev): bump mypy from 1.11.0 to 1.11.1
  • 77855a0 Merge pull request #834 from microsoftgraph/dependabot/pip/aiohttp-3.10.0
  • 312d7ea chore(deps-dev): bump aiohttp from 3.9.5 to 3.10.0
  • Additional commits viewable in compare view

Updates numpy from 2.0.1 to 2.1.0

Release notes

Sourced from numpy's releases.

2.1.0 (Aug 18, 2024)

NumPy 2.1.0 Release Notes

NumPy 2.1.0 provides support for the upcoming Python 3.13 release and drops support for Python 3.9. In addition to the usual bug fixes and updated Python support, it helps get us back into our usual release cycle after the extended development of 2.0. The highlights for this release are:

  • Support for the array-api 2023.12 standard.
  • Support for Python 3.13.
  • Preliminary support for free threaded Python 3.13.

Python versions 3.10-3.13 are supported in this release.

New functions

New function numpy.unstack

A new function np.unstack(array, axis=...) was added, which splits an array into a tuple of arrays along an axis. It serves as the inverse of [numpy.stack]{.title-ref}.

(gh-26579)

Deprecations

  • The fix_imports keyword argument in numpy.save is deprecated. Since NumPy 1.17, numpy.save uses a pickle protocol that no longer supports Python 2, and ignored fix_imports keyword. This keyword is kept only for backward compatibility. It is now deprecated.

    (gh-26452)

  • Passing non-integer inputs as the first argument of [bincount]{.title-ref} is now deprecated, because such inputs are silently cast to integers with no warning about loss of precision.

    (gh-27076)

Expired deprecations

  • Scalars and 0D arrays are disallowed for numpy.nonzero and numpy.ndarray.nonzero.

    (gh-26268)

  • set_string_function internal function was removed and PyArray_SetStringFunction was stubbed out.

... (truncated)

Commits
  • 2f7fe64 Merge pull request #27236 from charris/prepare-2.1.0
  • b6f434f REL: Prepare for the NumPy 2.1.0 release [wheel build]
  • 3cf9394 Merge pull request #27234 from charris/backport-25984
  • 7443dcc Merge pull request #27233 from charris/backport-27223
  • 85b1cab BUG: Allow fitting of degree zero polynomials with Polynomial.fit
  • 395a81d DOC: reword discussion about shared arrays to hopefully be clearer
  • 5af2e96 Move NUMUSERTYPES thread safety discussion to legacy DType API docs
  • d902c24 DOC: add docs on thread safety in NumPy
  • c080180 Merge pull request #27229 from charris/backport-27226
  • 44ce7e8 BUG: Fix PyArray_ZeroContiguousBuffer (resize) with struct dtypes
  • Additional commits viewable in compare view

Updates opentelemetry-instrumentation-openai from 0.27.0 to 0.28.1

Release notes

Sourced from opentelemetry-instrumentation-openai's releases.

0.28.1

v0.28.1 (2024-08-24)

Fix

  • langchain: langgraph traces were broken (#1895)

[main d1d67acb] bump: version 0.28.0 → 0.28.1 49 files changed, 54 insertions(+), 48 deletions(-)

0.28.0

v0.28.0 (2024-08-24)

Feat

  • llama-index: callback improvements (#1859)

Fix

  • openai: re-enabled token count for azure instances (#1877)
  • openai: not given values thrown errors (#1876)
  • sdk: aentity_class was missing a positional argument (#1816)
  • sdk: instrument threading for propagating otel context (#1868)
  • openai: TypeError: '<' not supported between instances of 'NoneType' and 'int' in embeddings_wrappers.py (#1836)

[main 27daeff2] bump: version 0.27.0 → 0.28.0 49 files changed, 62 insertions(+), 48 deletions(-)

Changelog

Sourced from opentelemetry-instrumentation-openai's changelog.

v0.28.1 (2024-08-24)

Fix

  • langchain: langgraph traces were broken (#1895)

v0.28.0 (2024-08-24)

Feat

  • llama-index: callback improvements (#1859)

Fix

  • openai: re-enabled token count for azure instances (#1877)
  • openai: not given values thrown errors (#1876)
  • sdk: aentity_class was missing a positional argument (#1816)
  • sdk: instrument threading for propagating otel context (#1868)
  • openai: TypeError: '<' not supported between instances of 'NoneType' and 'int' in embeddings_wrappers.py (#1836)
Commits
  • d1d67ac bump: version 0.28.0 → 0.28.1
  • 3a0bdf3 fix(langchain): langgraph traces were broken (#1895)
  • 27daeff bump: version 0.27.0 → 0.28.0
  • 1e3ce76 chore(sample-app): langgraph example (#1878)
  • 42ee945 fix(openai): re-enabled token count for azure instances (#1877)
  • 3aa9d69 fix(openai): not given values thrown errors (#1876)
  • 13b0707 fix(sdk): aentity_class was missing a positional argument (#1816)
  • 45ccf5f feat(llama-index): callback improvements (#1859)
  • 26ee71a chore(sample-app): update lock file
  • 30ffbed fix(sdk): instrument threading for propagating otel context (#1868)
  • Additional commits viewable in compare view

Updates psutil from 5.9.8 to 6.0.0

Changelog

Sourced from psutil's changelog.

6.0.0

2024-06-18

Enhancements

  • 2109_: maxfile and maxpath fields were removed from the namedtuple returned by disk_partitions()_. Reason: on network filesystems (NFS) this can potentially take a very long time to complete.
  • 2366_, [Windows]: log debug message when using slower process APIs.
  • 2375_, [macOS]: provide arm64 wheels. (patch by Matthieu Darbois)
  • 2396_: process_iter()_ no longer pre-emptively checks whether PIDs have been reused. This makes process_iter()_ around 20x times faster.
  • 2396_: a new psutil.process_iter.cache_clear() API can be used the clear process_iter()_ internal cache.
  • 2401_, Support building with free-threaded CPython 3.13. (patch by Sam Gross)
  • 2407_: Process.connections()_ was renamed to Process.net_connections()_. The old name is still available, but it's deprecated (triggers a DeprecationWarning) and will be removed in the future.
  • 2425_: [Linux]: provide aarch64 wheels. (patch by Matthieu Darbois / Ben Raz)

Bug fixes

  • 2250_, [NetBSD]: Process.cmdline()_ sometimes fail with EBUSY. It usually happens for long cmdlines with lots of arguments. In this case retry getting the cmdline for up to 50 times, and return an empty list as last resort.
  • 2254_, [Linux]: offline cpus raise NotImplementedError in cpu_freq() (patch by Shade Gladden)
  • 2272_: Add pickle support to psutil Exceptions.
  • 2359_, [Windows], [CRITICAL]: pid_exists()_ disagrees with Process_ on whether a pid exists when ERROR_ACCESS_DENIED.
  • 2360_, [macOS]: can't compile on macOS < 10.13. (patch by Ryan Schmidt)
  • 2362_, [macOS]: can't compile on macOS 10.11. (patch by Ryan Schmidt)
  • 2365_, [macOS]: can't compile on macOS < 10.9. (patch by Ryan Schmidt)
  • 2395_, [OpenBSD]: pid_exists()_ erroneously return True if the argument is a thread ID (TID) instead of a PID (process ID).
  • 2412_, [macOS]: can't compile on macOS 10.4 PowerPC due to missing MNT_ constants.

Porting notes

Version 6.0.0 introduces some changes which affect backward compatibility:

  • 2109_: the namedtuple returned by disk_partitions()_' no longer has maxfile and maxpath fields.
  • 2396_: process_iter()_ no longer pre-emptively checks whether PIDs have been reused. If you want to check for PID reusage you are supposed to use Process.is_running()_ against the yielded Process_ instances. That will also automatically remove reused PIDs from process_iter()_ internal cache.

... (truncated)

Commits
  • 3d5522a release
  • 5b30ef4 Add aarch64 manylinux wheels (#2425)
  • 1d092e7 test subprocesses: sleep() with an interval of 0.1 to make the test process m...
  • 5f80c12 Fix #2412, [macOS]: can't compile on macOS 10.4 PowerPC due to missing MNT_...
  • 89b6096 process_iter(): use another global var to keep track of reused PIDs
  • 9421bf8 openbsd: skip test if cmdline() returns [] due to EBUSY
  • 4b1a054 Fix #2250 / NetBSD / cmdline: retry on EBUSY. (#2421)
  • 20be5ae ruff: enable and fix 'unused variable' rule
  • 5530985 chore(ci): update actions (#2417)
  • 1c7cb0a Don't build with limited API for 3.13 free-threaded build (#2402)
  • Additional commits viewable in compare view

Updates pydantic-core from 2.20.1 to 2.23.0

Release notes

Sourced from pydantic-core's releases.

v2.23.0 2024-08-19

What's Changed

Full Changelog: pydantic/pydantic-core@v2.22.0...v2.23.0

v2.22.0 2024-08-15

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-core@v2.21.0...v2.22.0

v2.21.0 2024-08-05

What's Changed

Packaging

Fixes

Features

... (truncated)

Commits
  • 4113638 Prep for v2.23.0 (#1412)
  • 51c412b Breaking change: Change metadata type hint from Any -> `Dict[str, Any] | ...
  • b127652 Adding cls reference to TypedDictSchema (#1410)
  • de04f03 Disable automatic assignees with hooky (#1408)
  • a6d0d63 Version bump to prep for new release (#1406)
  • 08a99b5 Introduce exactness into Decimal validation logic (#1405)
  • fdd1e85 Adding tagged union serializer 🚀 (#1397)
  • 3d8295e Support complex numbers (#1331)
  • bb67044 Use typing_extensions.TypedDict on Python < 3.12 (#1404)
  • a072575 For missing fields, we don't warn on exclude_, so don't warn on exclude (...
  • 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

Bumps the python-requirements group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [fixedint](https://github.com/nneonneo/fixedint) | `0.1.6` | `0.2.0` |
| [importlib-metadata](https://github.com/python/importlib_metadata) | `8.0.0` | `8.4.0` |
| [msgraph-sdk](https://github.com/microsoftgraph/msgraph-sdk-python) | `1.1.0` | `1.5.4` |
| [numpy](https://github.com/numpy/numpy) | `2.0.1` | `2.1.0` |
| [opentelemetry-instrumentation-openai](https://github.com/traceloop/openllmetry) | `0.27.0` | `0.28.1` |
| [psutil](https://github.com/giampaolo/psutil) | `5.9.8` | `6.0.0` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.20.1` | `2.23.0` |


Updates `fixedint` from 0.1.6 to 0.2.0
- [Changelog](https://github.com/nneonneo/fixedint/blob/master/CHANGES)
- [Commits](nneonneo/fixedint@v0.1.6...v0.2.0)

Updates `importlib-metadata` from 8.0.0 to 8.4.0
- [Release notes](https://github.com/python/importlib_metadata/releases)
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst)
- [Commits](python/importlib_metadata@v8.0.0...v8.4.0)

Updates `msgraph-sdk` from 1.1.0 to 1.5.4
- [Release notes](https://github.com/microsoftgraph/msgraph-sdk-python/releases)
- [Changelog](https://github.com/microsoftgraph/msgraph-sdk-python/blob/main/CHANGELOG.md)
- [Commits](microsoftgraph/msgraph-sdk-python@v1.1.0...v1.5.4)

Updates `numpy` from 2.0.1 to 2.1.0
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v2.0.1...v2.1.0)

Updates `opentelemetry-instrumentation-openai` from 0.27.0 to 0.28.1
- [Release notes](https://github.com/traceloop/openllmetry/releases)
- [Changelog](https://github.com/traceloop/openllmetry/blob/main/CHANGELOG.md)
- [Commits](traceloop/openllmetry@0.27.0...0.28.1)

Updates `psutil` from 5.9.8 to 6.0.0
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-5.9.8...release-6.0.0)

Updates `pydantic-core` from 2.20.1 to 2.23.0
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.20.1...v2.23.0)

---
updated-dependencies:
- dependency-name: fixedint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: importlib-metadata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: msgraph-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: opentelemetry-instrumentation-openai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: psutil
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-requirements
- dependency-name: pydantic-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python labels Aug 26, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 2, 2024

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

@dependabot dependabot bot closed this Sep 2, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-requirements-b61f2f66c3 branch September 2, 2024 13:02
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants