Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ jobs:
run: |
sleep 120

- name: Update llama-parse lock file
run: |
cd llama_parse && poetry lock

- name: Build and publish llama-parse
uses: JRubics/[email protected]
with:
package_directory: "./llama_parse"
pypi_token: ${{ secrets.LLAMA_PARSE_PYPI_TOKEN }}
poetry_install_options: "--without dev"
# - name: Update llama-parse lock file
# run: |
# cd llama_parse && poetry lock

# - name: Build and publish llama-parse
# uses: JRubics/[email protected]
# with:
# package_directory: "./llama_parse"
# pypi_token: ${{ secrets.LLAMA_PARSE_PYPI_TOKEN }}
# poetry_install_options: "--without dev"
#
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we very much should continue to publish the package

Ideally, we add a deprecation warning directly to users who import/use that package?

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -64,7 +64,7 @@ jobs:
release_name: ${{ github.ref }}
draft: false
prerelease: false

#
- name: Get Asset name
run: |
export PKG=$(ls dist/ | grep tar)
Expand Down
3 changes: 3 additions & 0 deletions llama_parse/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# LlamaParse

> [!CAUTION]
> This project has been deprecated. Please use [llama-cloud-services](https://pypi.org/project/llama-cloud-services/) instead

[![PyPI - Downloads](https://img.shields.io/pypi/dm/llama-parse)](https://pypi.org/project/llama-parse/)
[![GitHub contributors](https://img.shields.io/github/contributors/run-llama/llama_parse)](https://github.com/run-llama/llama_parse/graphs/contributors)
[![Discord](https://img.shields.io/discord/1059199217496772688)](https://discord.gg/dGcwcsnxhU)
Expand Down
Loading