Skip to content

Commit b69bbc1

Browse files
committed
Release v0.38.0
1 parent 0a5cdbe commit b69bbc1

File tree

5 files changed

+13
-32
lines changed

5 files changed

+13
-32
lines changed

.github/workflows/preview-deployments.yml

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,19 @@ jobs:
2929
uses: PyO3/maturin-action@v1
3030
with:
3131
target: x86_64
32-
args: -i python --release --out dist
32+
args: -i python --release --out dist --no-sdist
3333
- name: Install build wheel - x86_64
3434
run: |
3535
pip install --force-reinstall dist/robyn*.whl
3636
cd ~ && python -c 'import robyn'
3737
- name: Build wheels - universal2
3838
uses: PyO3/maturin-action@v1
3939
with:
40-
args: -i python --release --universal2 --out dist
40+
args: -i python --release --universal2 --out dist --no-sdist
4141
- name: Install build wheel - universal2
4242
run: |
4343
pip install --force-reinstall dist/robyn*_universal2.whl
4444
cd ~ && python -c 'import robyn'
45-
- name: Upload wheels
46-
uses: actions/upload-artifact@v3
47-
with:
48-
name: wheels
49-
path: dist
5045
5146
windows:
5247
runs-on: windows-latest
@@ -65,17 +60,12 @@ jobs:
6560
uses: PyO3/maturin-action@v1
6661
with:
6762
target: ${{ matrix.target }}
68-
args: -i python --release --out dist
63+
args: -i python --release --out dist --no-sdist
6964
- name: Install build wheel
7065
shell: bash
7166
run: |
7267
pip install --force-reinstall dist/robyn*.whl
7368
cd ~ && python -c 'import robyn'
74-
- name: Upload wheels
75-
uses: actions/upload-artifact@v3
76-
with:
77-
name: wheels
78-
path: dist
7969
8070
linux:
8171
runs-on: ubuntu-latest
@@ -94,17 +84,12 @@ jobs:
9484
with:
9585
target: ${{ matrix.target }}
9686
manylinux: auto
97-
args: -i python${{ matrix.python-version }} --release --out dist
87+
args: -i python${{ matrix.python-version }} --release --out dist --no-sdist
9888
- name: Install build wheel
9989
if: matrix.target == 'x86_64'
10090
run: |
10191
pip install --force-reinstall dist/robyn*.whl
10292
cd ~ && python -c 'import robyn'
103-
- name: Upload wheels
104-
uses: actions/upload-artifact@v3
105-
with:
106-
name: wheels
107-
path: dist
10893
10994
linux-cross:
11095
runs-on: ubuntu-latest
@@ -128,7 +113,7 @@ jobs:
128113
with:
129114
target: ${{ matrix.target }}
130115
manylinux: auto
131-
args: -i python${{matrix.python.version}} --release --out dist
116+
args: -i python${{matrix.python.version}} --release --out dist --no-sdist
132117
- uses: uraimo/[email protected]
133118
name: Install build wheel
134119
with:
@@ -155,8 +140,3 @@ jobs:
155140
pip install --upgrade pip setuptools wheel
156141
pip install --force-reinstall dist/robyn*.whl
157142
cd ~ && python -c 'import robyn'
158-
- name: Upload wheels
159-
uses: actions/upload-artifact@v3
160-
with:
161-
name: wheels
162-
path: dist

.github/workflows/release-CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
with:
125125
target: ${{ matrix.target }}
126126
manylinux: auto
127-
args: -i python${{matrix.python.version}} --release --out dist
127+
args: -i python${{matrix.python.version}} --release --out dist --no-sdist
128128
- uses: uraimo/[email protected]
129129
name: Install build wheel
130130
with:

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "robyn"
3-
version = "0.37.0"
3+
version = "0.38.0"
44
authors = ["Sanskar Jethi <[email protected]>"]
55
edition = "2018"
66
description = "A web server that is fast!"

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "robyn"
7-
version = "0.37.0"
7+
version = "0.38.0"
88
description = "A High-Performance, Community-Driven, and Innovator Friendly Web Framework with a Rust runtime."
99
authors = [{ name = "Sanskar Jethi", email = "[email protected]" }]
1010
repository = "https://github.com/sparckles/robyn"
@@ -33,16 +33,17 @@ dependencies = [
3333
"uvloop>=0.17.0; sys_platform == 'darwin' and platform_machine == 'aarch_64' and platform_machine == 'x86_64' and platform_machine == 'i686'"
3434
]
3535

36+
[project.optional-dependencies]
37+
"templating" = ["jinja2 == 3.0.1"]
38+
3639
[project.urls]
3740
Issues = "https://github.com/sparckles/robyn/issues"
3841
Changelog = "https://github.com/sparckles/robyn/blob/main/CHANGELOG.md"
3942

40-
[project.optional-dependencies]
41-
"templating" = ["jinja2 == 3.0.1"]
4243

4344
[tool.poetry]
4445
name = "robyn"
45-
version = "0.37.0"
46+
version = "0.38.0"
4647
description = "A High-Performance, Community-Driven, and Innovator Friendly Web Framework with a Rust runtime."
4748
authors = ["Sanskar Jethi <[email protected]>"]
4849

0 commit comments

Comments
 (0)