Skip to content

Commit

Permalink
update action again
Browse files Browse the repository at this point in the history
  • Loading branch information
jkanche committed Jul 16, 2024
1 parent bc56d65 commit 58ebba0
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/publish_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,27 @@ jobs:
tinytex: true

- name: Install Python and Dependencies
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'
cache: 'pip'
# - run: pip install uv
# - run: uv venv
# - run: source .venv/bin/activate
- run: pip install -r requirements.txt

# build SQLite from source, because I need 3.35<=
- name: Download SQLite3
run: |
wget https://www.sqlite.org/2024/sqlite-autoconf-3450300.tar.gz
tar -xvf sqlite-autoconf-3450300.tar.gz
- name: Install SQLite3
run: |
cd sqlite-autoconf-3450300
./configure
make
sudo make install
export PATH="/usr/local/lib:$PATH"
cd ..
- name: Render
uses: quarto-dev/quarto-actions/render@v2
with:
Expand Down

0 comments on commit 58ebba0

Please sign in to comment.