Skip to content

Commit

Permalink
Release v0.65.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sansyrox committed Jan 7, 2025
1 parent 2aad774 commit 07f28de
Show file tree
Hide file tree
Showing 5 changed files with 99 additions and 88 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/release-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,25 +130,36 @@ jobs:
name: Install build wheel
with:
arch: ${{ matrix.target }}
distro: ubuntu20.04
distro: ubuntu22.04
githubToken: ${{ github.token }}
# Mount the dist directory as /artifacts in the container
dockerRunArgs: |
--volume "${PWD}/dist:/artifacts"
install: |
apt update -y
apt install -y gcc musl-dev python3-dev # this is needed for psutil
apt install -y gcc musl-dev python3-dev
apt install -y --no-install-recommends software-properties-common
add-apt-repository ppa:deadsnakes/ppa
apt update -y
PYTHON=python${{ matrix.python.version }}
apt install -y $PYTHON $PYTHON-distutils $PYTHON-venv
if [ "${{ matrix.python.version }}" = "3.12" ]; then
apt install -y $PYTHON python-setuptools python3-venv
else
apt install -y $PYTHON $PYTHON-distutils python-setuptools python3-venv
fi
run: |
ls -lrth /artifacts
PYTHON=python${{ matrix.python.version }}
$PYTHON --version
$PYTHON -m venv venv
source venv/bin/activate
if [ "${{ matrix.python.version }}" = "3.12" ]; then
$PYTHON -m venv venv --without-pip
source venv/bin/activate
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$PYTHON get-pip.py
else
$PYTHON -m venv venv
source venv/bin/activate
fi
pip install --upgrade pip setuptools wheel
pip install --force-reinstall dist/robyn*.whl
cd ~ && python -c 'import robyn'
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "robyn"
version = "0.64.2"
version = "0.65.0"
authors = ["Sanskar Jethi <[email protected]>"]
edition = "2021"
description = "Robyn is a Super Fast Async Python Web Framework with a Rust runtime."
Expand Down
Loading

0 comments on commit 07f28de

Please sign in to comment.