Skip to content

chore(deps-dev): bump the python-dependencies group across 1 directory with 2 updates - #307

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/graphrag_sdk/python-dependencies-a9960814d2
Open

chore(deps-dev): bump the python-dependencies group across 1 directory with 2 updates#307
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/graphrag_sdk/python-dependencies-a9960814d2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on openai and anthropic to permit the latest version.
Updates openai to 3.8.0

Release notes

Sourced from openai's releases.

v3.8.0

3.8.0 (2026-09-03)

Features

  • api: add gpt-6-astra and related features (#3791) (09f446f)

Documentation

Changelog

Sourced from openai's changelog.

3.8.0 (2026-09-03)

Features

  • api: add gpt-6-astra and related features (#3791) (09f446f)

Documentation

3.7.0 (2026-09-02)

Features

  • api: update usage APIs and documentation (#3779) (6f0da16)

Bug Fixes

  • avoid repeated numpy checks for embeddings (#3757) (b19c216)

3.6.0 (2026-08-27)

Features

  • api: add compute_units to Responses and Chat Completions usage (#3749) (52421d1)

Bug Fixes

  • auth: harden X.509 workload identity integration (#3740) (fc3ad6c)

Chores

  • deps-dev: bump @​stdy/cli from 0.22.1 to 0.22.2 (#3719) (4f5598c)
  • deps-dev: bump mypy from 1.17 to 2.3.1 (#3747) (0b52c9e)
  • deps-dev: bump pandas-stubs from 2.2.2.240807 to 2.3.3.260113 (#3659) (95f0b43)
  • deps-dev: bump pyright from 1.1.399 to 1.1.413 (#3744) (9917c6e)
  • deps-dev: bump rich from 14.2.0 to 15.0.0 (#3717) (7a5484d)
  • deps: bump actions/checkout from 6.0.2 to 7.0.1 (#3665) (d0a2550)
  • deps: bump actions/download-artifact from 6.0.0 to 8.0.1 (#3669) (f627619)
  • deps: bump github/codeql-action/init from 4.37.1 to 4.37.7 (#3745) (a36010d)

Build System

... (truncated)

Commits

Updates anthropic to 1.3.0

Release notes

Sourced from anthropic's releases.

v1.3.0

1.3.0 (2026-09-01)

Full Changelog: v1.2.0...v1.3.0

Features

  • api: beta user profiles: add external_user_onboarded_at, remove relationship in favor of access_type (74080c3)
  • api: manual updates (1dc3ce0)
  • api: organization compliance settings, user-profile order_by, memory-store and toolset schema updates (429e719)

Bug Fixes

  • aws: resolve base_url from aws_region under skip_auth and with_options (#564) (b6d1732)
  • batches: add results to GA raw/streaming response wrappers (cbf9715)
  • ci: don't hard-wrap detect-breaking-changes output (b5be779)
  • client: derive multipart filename for file tuples passed without one (a9f3fb4)
  • types: remove unused wire aliases from header and path params (dc0a9ab)

Chores

  • internal: drop the unused discriminator argument from PropertyInfo (3dae6fd)
  • internal: drop the unused distro dependency (a47d85f)

Documentation

  • changelog: detail the beta files/skills GA-shape change (#1900) (7c84e13)

Refactors

  • types: mark discriminated unions with UnionDiscriminator instead of PropertyInfo (17df0bf)
  • types: use UnionDiscriminator for more discriminated unions (b44af2c)
Changelog

Sourced from anthropic's changelog.

1.3.0 (2026-09-01)

Full Changelog: v1.2.0...v1.3.0

Features

  • api: beta user profiles: add external_user_onboarded_at, remove relationship in favor of access_type (74080c3)
  • api: manual updates (1dc3ce0)
  • api: organization compliance settings, user-profile order_by, memory-store and toolset schema updates (429e719)

Bug Fixes

  • aws: resolve base_url from aws_region under skip_auth and with_options (#564) (b6d1732)
  • batches: add results to GA raw/streaming response wrappers (cbf9715)
  • ci: don't hard-wrap detect-breaking-changes output (b5be779)
  • client: derive multipart filename for file tuples passed without one (a9f3fb4)
  • types: remove unused wire aliases from header and path params (dc0a9ab)

Chores

  • internal: drop the unused discriminator argument from PropertyInfo (3dae6fd)
  • internal: drop the unused distro dependency (a47d85f)

Documentation

  • changelog: detail the beta files/skills GA-shape change (#1900) (7c84e13)

Refactors

  • types: mark discriminated unions with UnionDiscriminator instead of PropertyInfo (17df0bf)
  • types: use UnionDiscriminator for more discriminated unions (b44af2c)

1.2.0 (2026-08-27)

Full Changelog: v1.1.0...v1.2.0

Features

  • api: beta files/skills namespaces use GA shapes; drop dated beta header pins (9df4565)

    The beta Files and Skills namespaces (client.beta.files, client.beta.skills) no longer send the files-api-2025-04-14 / skills-2025-10-02 headers and return the same shapes as client.files / client.skills (with Beta-prefixed type names under anthropic.types.beta). Requests that still send those headers on raw HTTP keep receiving the beta shapes.

    Changes in the beta namespaces:

    • client.beta.skills.delete() now deletes a Skill together with all of its versions (previously refused while any version existed). It returns BetaDeletedSkill (was SkillDeleteResponse).
    • Beta Messages type BetaSkill (container skill reference with skill_id, type, version) is renamed BetaContainerSkill; the request-side BetaSkillParams keeps its name. BetaSkill now names the Skill object returned by client.beta.skills.create() / retrieve() / list() (replacing SkillCreateResponse / SkillRetrieveResponse / SkillListResponse), and skill versions are BetaSkillVersion / BetaDeletedSkillVersion (replacing Version*Response).
    • client.beta.files.list() returns SyncPageCursor[BetaFileMetadata] / AsyncPageCursor[BetaFileMetadata] (with data / next_page) and paginates with page= / ids= (was SyncPage / AsyncPage with data, has_more, first_id, last_id and before_id= / after_id=); iterating the result for auto-pagination is unchanged. BetaSkill uses display_name (was display_title, also the create() keyword) and latest_version_id (was latest_version), and BetaSkillVersion is addressed by its skver_… id (the Unix-timestamp version field is gone).

... (truncated)

Commits
  • 370ee92 release: 1.3.0
  • b132569 feat(api): manual updates
  • 665dae8 fix(types): remove unused wire aliases from header and path params
  • 825dbb9 fix(client): derive multipart filename for file tuples passed without one
  • 2d81a47 fix(ci): don't hard-wrap detect-breaking-changes output
  • 23d68ee feat(api): organization compliance settings, user-profile order_by, memory-st...
  • f21982a fix(aws): resolve base_url from aws_region under skip_auth and with_options (...
  • e7e0c00 fix(batches): add results to GA raw/streaming response wrappers
  • 1280f2c chore(internal): drop the unused discriminator argument from PropertyInfo
  • 72cac10 refactor(types): use UnionDiscriminator for more discriminated unions
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Aug 24, 2026
@dependabot
dependabot Bot force-pushed the dependabot/pip/graphrag_sdk/python-dependencies-a9960814d2 branch from 26b514f to 4a0082c Compare August 31, 2026 03:36
…y with 2 updates

Updates the requirements on [openai](https://github.com/openai/openai-python) and [anthropic](https://github.com/anthropics/anthropic-sdk-python) to permit the latest version.

Updates `openai` to 3.8.0
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v1.0.0...v3.8.0)

Updates `anthropic` to 1.3.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-python@v0.20.0...v1.3.0)

---
updated-dependencies:
- dependency-name: anthropic
  dependency-version: 1.0.0
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: openai
  dependency-version: 3.3.1
  dependency-type: direct:development
  dependency-group: python-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/pip/graphrag_sdk/python-dependencies-a9960814d2 branch from 4a0082c to 2ff9635 Compare September 7, 2026 03:36
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