Skip to content

Commit 0f16260

Browse files
committed
Release v0.65.0
1 parent 2aad774 commit 0f16260

File tree

5 files changed

+98
-87
lines changed

5 files changed

+98
-87
lines changed

.github/workflows/release-CI.yml

+15-4
Original file line numberDiff line numberDiff line change
@@ -137,18 +137,29 @@ jobs:
137137
--volume "${PWD}/dist:/artifacts"
138138
install: |
139139
apt update -y
140-
apt install -y gcc musl-dev python3-dev # this is needed for psutil
140+
apt install -y gcc musl-dev python3-dev
141141
apt install -y --no-install-recommends software-properties-common
142142
add-apt-repository ppa:deadsnakes/ppa
143143
apt update -y
144144
PYTHON=python${{ matrix.python.version }}
145-
apt install -y $PYTHON $PYTHON-distutils $PYTHON-venv
145+
if [ "${{ matrix.python.version }}" = "3.12" ]; then
146+
apt install -y $PYTHON python-setuptools python3-venv
147+
else
148+
apt install -y $PYTHON $PYTHON-distutils python-setuptools python3-venv
149+
fi
146150
run: |
147151
ls -lrth /artifacts
148152
PYTHON=python${{ matrix.python.version }}
149153
$PYTHON --version
150-
$PYTHON -m venv venv
151-
source venv/bin/activate
154+
if [ "${{ matrix.python.version }}" = "3.12" ]; then
155+
$PYTHON -m venv venv --without-pip
156+
source venv/bin/activate
157+
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
158+
$PYTHON get-pip.py
159+
else
160+
$PYTHON -m venv venv
161+
source venv/bin/activate
162+
fi
152163
pip install --upgrade pip setuptools wheel
153164
pip install --force-reinstall dist/robyn*.whl
154165
cd ~ && python -c 'import robyn'

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "robyn"
3-
version = "0.64.2"
3+
version = "0.65.0"
44
authors = ["Sanskar Jethi <[email protected]>"]
55
edition = "2021"
66
description = "Robyn is a Super Fast Async Python Web Framework with a Rust runtime."

0 commit comments

Comments
 (0)