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

build(deps): bump the python-packages group with 4 updates #28

Merged
merged 2 commits into from
Jun 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the python-packages group with 4 updates: tree-sitter, openai, transformers and pytest.

Updates tree-sitter from 0.21.3 to 0.22.3

Release notes

Sourced from tree-sitter's releases.

v0.22.3

Full Changelog: tree-sitter/py-tree-sitter@v0.22.2...v0.22.3

v0.22.2

Full Changelog: tree-sitter/py-tree-sitter@v0.22.1...v0.22.2

v0.22.1

Full Changelog: tree-sitter/py-tree-sitter@v0.22.0...v0.22.1

v0.22.0

Breaking changes are marked with !.

Additions:

  • LANGUAGE_VERSION
  • MIN_COMPATIBLE_LANGUAGE_VERSION
  • Point(row, column)
  • Language.__repr__()
  • Language.__eq__(): checks ptr
  • Language.__int__(): returns ptr
  • Language.__index__(): returns ptr
  • Language.__hash__(): returns ptr
  • Node.__str__(): returns the S-expression
  • TreeCursor.goto_first_child_for_point(point)
  • TreeCursor.__copy__(): returns copy()
  • Query(language, source)
  • Parser(language, included_ranges, timeout_micros)
  • Parser.language (getter + setter)
  • Parser.included_ranges (getter + setter)
  • Parser.timeout_micros (getter + setter)
  • Range.__hash__()

Deprecations:

  • Node.sexp(): use str()
  • Tree.text: use root_node.text
  • TreeCursor.goto_first_child_for_point(row, column): use goto_first_child_for_point(point)
  • LookaheadIterator.reset(language, state): use reset_state(state, language)
  • Parser.set_language(language): use Parser(language) or language setter
  • Parser.set_included_ranges(ranges): use included_ranges setter
  • Parser.set_timeout_micros(timeout): use timeout_micros setter

Removals:

  • Language(path, name) !
  • Language.build_library(...) !
  • Language.name !
  • Language.lib
  • Language.language_id: use int()

... (truncated)

Commits
  • 2c0a6ee chore: release 0.22.3
  • 8042a8f refactor: remove unnecessary header files
  • d694939 fix: more 32bit issues
  • 85e4948 fix(language): use uintptr_t
  • a82d764 build: include header files in sdist
  • 79df26e chore: release 0.22.1
  • 0feea2e fix(range): validate input
  • 9cc8445 fix(node): use full count in field_name_for_child
  • 839d783 refactor(node): don't expose internal function
  • 54f923a fix(tree): return None if node is null
  • Additional commits viewable in compare view

Updates openai from 1.25.0 to 1.30.5

Release notes

Sourced from openai's releases.

v1.30.5

1.30.5 (2024-05-29)

Full Changelog: v1.30.4...v1.30.5

Chores

  • internal: fix lint issue (35a1e80)

v1.30.4

1.30.4 (2024-05-28)

Full Changelog: v1.30.3...v1.30.4

Chores

  • add missing all definitions (7fba60f)
  • internal: fix lint issue (f423cd0)

v1.30.3

1.30.3 (2024-05-24)

Full Changelog: v1.30.2...v1.30.3

Chores

Documentation

  • contributing: update references to rye-up.com (dcc34a2)

v1.30.2

1.30.2 (2024-05-23)

Full Changelog: v1.30.1...v1.30.2

Chores

v1.30.1

1.30.1 (2024-05-14)

Full Changelog: v1.30.0...v1.30.1

Chores

... (truncated)

Changelog

Sourced from openai's changelog.

1.30.5 (2024-05-29)

Full Changelog: v1.30.4...v1.30.5

Chores

  • internal: fix lint issue (35a1e80)

1.30.4 (2024-05-28)

Full Changelog: v1.30.3...v1.30.4

Chores

  • add missing all definitions (7fba60f)
  • internal: fix lint issue (f423cd0)

1.30.3 (2024-05-24)

Full Changelog: v1.30.2...v1.30.3

Chores

Documentation

  • contributing: update references to rye-up.com (dcc34a2)

1.30.2 (2024-05-23)

Full Changelog: v1.30.1...v1.30.2

Chores

1.30.1 (2024-05-14)

Full Changelog: v1.30.0...v1.30.1

Chores

  • internal: add slightly better logging to scripts (#1422) (43dffab)

1.30.0 (2024-05-14)

... (truncated)

Commits

Updates transformers from 4.40.1 to 4.41.2

Release notes

Sourced from transformers's releases.

Release v4.41.2

Mostly fixing some stuff related to trust_remote_code=True and from_pretrained

The local_file_only was having a hard time when a .safetensors file did not exist. This is not expected and instead of trying to convert, we should just fallback to loading the .bin files.

Release v4.41.1 Fix PaliGemma finetuning, and some small bugs

Release v4.41.1

Fix PaliGemma finetuning:

The causal mask and label creation was causing label leaks when training. Kudos to @​probicheaux for finding and reporting!

Other fixes:

Reverted huggingface/transformers@4ab7a28

v4.41.0: Phi3, JetMoE, PaliGemma, VideoLlava, Falcon2, FalconVLM & GGUF support

New models

Phi3

The Phi-3 model was proposed in Phi-3 Technical Report: A Highly Capable Language Model Locally on Your Phone by Microsoft.

TLDR; Phi-3 introduces new ROPE scaling methods, which seems to scale fairly well! A 3b and a Phi-3-mini is available in two context-length variants—4K and 128K tokens. It is the first model in its class to support a context window of up to 128K tokens, with little impact on quality.

JetMoE

JetMoe-8B is an 8B Mixture-of-Experts (MoE) language model developed by Yikang Shen and MyShell. JetMoe project aims to provide a LLaMA2-level performance and efficient language model with a limited budget. To achieve this goal, JetMoe uses a sparsely activated architecture inspired by the ModuleFormer. Each JetMoe block consists of two MoE layers: Mixture of Attention Heads and Mixture of MLP Experts. Given the input tokens, it activates a subset of its experts to process them. This sparse activation schema enables JetMoe to achieve much better training throughput than similar size dense models. The training throughput of JetMoe-8B is around 100B tokens per day on a cluster of 96 H100 GPUs with a straightforward 3-way pipeline parallelism strategy.

... (truncated)

Commits

Updates pytest from 8.2.0 to 8.2.1

Release notes

Sourced from pytest's releases.

8.2.1

pytest 8.2.1 (2024-05-19)

Improvements

  • #12334: Support for Python 3.13 (beta1 at the time of writing).

Bug Fixes

  • #12120: Fix [PermissionError]{.title-ref} crashes arising from directories which are not selected on the command-line.
  • #12191: Keyboard interrupts and system exits are now properly handled during the test collection.
  • #12300: Fixed handling of 'Function not implemented' error under squashfuse_ll, which is a different way to say that the mountpoint is read-only.
  • #12308: Fix a regression in pytest 8.2.0 where the permissions of automatically-created .pytest_cache directories became rwx------ instead of the expected rwxr-xr-x.

Trivial/Internal Changes

  • #12333: pytest releases are now attested using the recent Artifact Attestation support from GitHub, allowing users to verify the provenance of pytest's sdist and wheel artifacts.
Commits
  • 66ff8df Prepare release version 8.2.1
  • 3ffcfd1 Merge pull request #12340 from pytest-dev/backport-12334-to-8.2.x
  • 0b28313 [8.2.x] Add Python 3.13 (beta) support
  • f3dd93a [8.2.x] Attest package provenance (#12335)
  • bb5a125 [8.2.x] Spelling (#12331)
  • f179bf2 Merge pull request #12327 from pytest-dev/backport-12325-to-8.2.x
  • 2b671b5 [8.2.x] cacheprovider: fix .pytest_cache not being world-readable
  • 65ab7cb Merge pull request #12324 from pytest-dev/backport-12320-to-8.2.x
  • 4d5fb7d Merge pull request #12319 from pytest-dev/backport-12311-to-8.2.x
  • cbe5996 [8.2.x] changelog: document unittest 8.2 change as breaking
  • 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-packages group with 4 updates: [tree-sitter](https://github.com/tree-sitter/py-tree-sitter), [openai](https://github.com/openai/openai-python), [transformers](https://github.com/huggingface/transformers) and [pytest](https://github.com/pytest-dev/pytest).


Updates `tree-sitter` from 0.21.3 to 0.22.3
- [Release notes](https://github.com/tree-sitter/py-tree-sitter/releases)
- [Commits](tree-sitter/py-tree-sitter@v0.21.3...v0.22.3)

Updates `openai` from 1.25.0 to 1.30.5
- [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.25.0...v1.30.5)

Updates `transformers` from 4.40.1 to 4.41.2
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.40.1...v4.41.2)

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

---
updated-dependencies:
- dependency-name: tree-sitter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: transformers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 1, 2024
@hangyav hangyav merged commit 4b56d65 into main Jun 2, 2024
2 checks passed
@dependabot dependabot bot deleted the dependabot/pip/python-packages-8a3a4d59d1 branch June 2, 2024 08:17
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.

None yet

1 participant