Skip to content

Commit

Permalink
Release v0.26.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sansyrox committed Apr 4, 2023
1 parent 631a144 commit f0bf73a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ jobs:
--volume "${PWD}/dist:/artifacts"
install: |
apt update -y
apt install -y gcc musl-dev linux-headers python3-dev # this is needed for psutil
apt install -y --no-install-recommends software-properties-common
add-apt-repository ppa:deadsnakes/ppa
apt update -y
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.26.0"
version = "0.26.1"
authors = ["Sanskar Jethi <[email protected]>"]
edition = "2018"
description = "A web server that is fast!"
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "robyn"
version = "0.26.0"
version = "0.26.1"
description = "A web server that is fast!"
authors = ["Sanskar Jethi <[email protected]>"]

Expand All @@ -12,7 +12,8 @@ name = "robyn"
dependencies = [
'watchdog == 2.2.1',
'multiprocess == 0.70.14',
'nestd==0.3.1',
'psutil == 5.9.4',
'nestd == 0.3.1',
# conditional
'uvloop == 0.17.0; sys_platform == "darwin"',
'uvloop == 0.17.0; platform_machine == "aarch_64"',
Expand Down Expand Up @@ -52,3 +53,6 @@ exclude = ["src/*" , ".git" , "docs"]

[tool.ruff.mccabe]
max-complexity = 10

[tool.maturin]
module-name = "robyn"

0 comments on commit f0bf73a

Please sign in to comment.