Skip to content

Commit

Permalink
Merge branch 'main' into fix-tool-rules2
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahwooders authored Jan 30, 2025
2 parents 762c322 + 7583cd0 commit 47b0cb4
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 136 deletions.
19 changes: 0 additions & 19 deletions .github/workflows/notify-letta-cloud.yml

This file was deleted.

86 changes: 0 additions & 86 deletions .github/workflows/tests.yml

This file was deleted.

13 changes: 8 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,29 @@ repos:
- id: check-yaml
exclude: 'docs/.*|tests/data/.*|configs/.*'
- id: end-of-file-fixer
exclude: 'docs/.*|tests/data/.*|letta/server/static_files/.*|.*/.*\.(scss|css|html)'
exclude: 'docs/.*|tests/data/.*|letta/server/static_files/.*'
- id: trailing-whitespace
exclude: 'docs/.*|tests/data/.*|letta/server/static_files/.*'

- repo: local
hooks:
- id: autoflake
name: autoflake
entry: bash -c 'poetry run autoflake --remove-all-unused-imports --remove-unused-variables --in-place --recursive --ignore-init-module-imports .'
entry: poetry run autoflake
language: system
types: [python]
args: ['--remove-all-unused-imports', '--remove-unused-variables', '--in-place', '--recursive', '--ignore-init-module-imports']
- id: isort
name: isort
entry: bash -c 'poetry run isort --profile black .'
entry: poetry run isort
language: system
types: [python]
args: ['--profile', 'black']
exclude: ^docs/
- id: black
name: black
entry: bash -c 'poetry run black --line-length 140 --target-version py310 --target-version py311 .'
entry: poetry run black
language: system
types: [python]
exclude: ^docs/
args: ['--line-length', '140', '--target-version', 'py310', '--target-version', 'py311']
exclude: ^docs/
2 changes: 1 addition & 1 deletion letta/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.6.13"
__version__ = "0.6.17"


# import clients
Expand Down
36 changes: 15 additions & 21 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[tool.poetry]
name = "letta"


version = "0.6.13"
version = "0.6.17"
packages = [
{include = "letta"},
]
Expand All @@ -18,7 +16,7 @@ letta = "letta.main:app"

[tool.poetry.dependencies]
python = "<3.14,>=3.10"
typer = {extras = ["all"], version = "^0.9.0"}
typer = ">=0.12,<1.0"
questionary = "^2.0.1"
pytz = "^2023.3.post1"
tqdm = "^4.66.1"
Expand Down Expand Up @@ -81,6 +79,7 @@ e2b-code-interpreter = {version = "^1.0.3", optional = true}
anthropic = "^0.43.0"
letta_client = "^0.1.23"
openai = "^1.60.0"
colorama = "^0.4.6"


[tool.poetry.extras]
Expand Down

0 comments on commit 47b0cb4

Please sign in to comment.