Skip to content

Commit 6ee78c5

Browse files
committed
Release v0.65.0
1 parent 2aad774 commit 6ee78c5

File tree

5 files changed

+93
-86
lines changed

5 files changed

+93
-86
lines changed

.github/workflows/release-CI.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -137,19 +137,26 @@ 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 python3-venv
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
147+
else
148+
apt install -y $PYTHON $PYTHON-distutils python-setuptools
149+
fi
146150
run: |
147151
ls -lrth /artifacts
148152
PYTHON=python${{ matrix.python.version }}
149153
$PYTHON --version
154+
apt install -y python3-venv
150155
$PYTHON -m venv venv
151156
source venv/bin/activate
152-
pip install --upgrade pip setuptools wheel
157+
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
158+
$PYTHON get-pip.py
159+
pip install --upgrade setuptools wheel
153160
pip install --force-reinstall dist/robyn*.whl
154161
cd ~ && python -c 'import robyn'
155162
- name: Upload wheels

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)