Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
gingerwizard committed Feb 16, 2024
2 parents cf868c5 + 669d5bb commit a5e4ae1
Show file tree
Hide file tree
Showing 680 changed files with 51,875 additions and 3,739 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
with:
# v0 makes it easy to bust the cache if needed
# just increase the integer to start with a fresh cache
gha-cache-key: v0-py${{ matrix.python_version }}
named-caches-hash: ${{ hashFiles('**/pyproject.toml') }}
gha-cache-key: v1-py${{ matrix.python_version }}
named-caches-hash: v1-py${{ matrix.python_version }}
pants-python-version: ${{ matrix.python-version }}
pants-ci-config: pants.toml
- name: Check BUILD files
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
dist/
migration_scripts/
venv/
.venv/
.ipynb_checkpoints
.__pycache__
__pycache__
dev_notebooks/
llamaindex_registry.txt
packages_to_bump_deduped.txt
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ cd ./llama-index-packs
llamaindex-cli new-package --kind "packs" --name "my new pack"

cd ./llama-index-integrations/readers
llamaindex-cli new-pacakge --kind "readers" --name "new reader"
llamaindex-cli new-package --kind "readers" --name "new reader"
```

Executing the first set of shell commands will create a new folder called `llama-index-packs-my-new-pack`
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ lint: ## Run linters: pre-commit (black, ruff, codespell) and mypy
pre-commit install && git ls-files | xargs pre-commit run --show-diff-on-failure --files

test: ## Run tests via pants
pants --no-local-cache --changed-since=origin/main test
pants --no-local-cache --changed-since=origin/main --changed-dependents=transitive test

test-core: ## Run tests via pants
pants --no-local-cache test llama-index-core/::
Expand Down
Loading

0 comments on commit a5e4ae1

Please sign in to comment.