Skip to content

Commit 0b766c9

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

File tree

5 files changed

+90
-94
lines changed

5 files changed

+90
-94
lines changed

.github/workflows/release-CI.yml

+7-11
Original file line numberDiff line numberDiff line change
@@ -130,27 +130,23 @@ jobs:
130130
name: Install build wheel
131131
with:
132132
arch: ${{ matrix.target }}
133-
distro: ubuntu20.04
133+
distro: ubuntu22.04
134134
githubToken: ${{ github.token }}
135135
# Mount the dist directory as /artifacts in the container
136136
dockerRunArgs: |
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
141-
apt install -y --no-install-recommends software-properties-common
142-
add-apt-repository ppa:deadsnakes/ppa
140+
apt install -y software-properties-common
141+
add-apt-repository -y ppa:deadsnakes/ppa
143142
apt update -y
144-
PYTHON=python${{ matrix.python.version }}
145-
apt install -y $PYTHON $PYTHON-distutils $PYTHON-venv
143+
apt install -y gcc musl-dev python3-dev python${{ matrix.python.version }} python${{ matrix.python.version }}-venv
146144
run: |
147145
ls -lrth /artifacts
148-
PYTHON=python${{ matrix.python.version }}
149-
$PYTHON --version
150-
$PYTHON -m venv venv
146+
python${{ matrix.python.version }} -m venv venv
151147
source venv/bin/activate
152-
pip install --upgrade pip setuptools wheel
153-
pip install --force-reinstall dist/robyn*.whl
148+
python -m pip install --upgrade pip setuptools wheel
149+
python -m pip install --force-reinstall /artifacts/robyn*.whl
154150
cd ~ && python -c 'import robyn'
155151
- name: Upload wheels
156152
uses: actions/upload-artifact@v3

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)