Skip to content

Commit

Permalink
Merge branch 'sparckles:main' into open-api-spec-support
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Sunglasses authored Nov 2, 2023
2 parents 5bb8fb8 + c149ae9 commit 1baedf4
Show file tree
Hide file tree
Showing 226 changed files with 1,665 additions and 10,675 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ body:
- 3.9
- 3.10
- 3.11
- 3.12
- Other (specify below)
validations:
required: false
Expand All @@ -64,4 +65,3 @@ body:
attributes:
label: Additional Info
description: Any additional info that you think might be useful or relevant to this bug

2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ contact_links:
url: https://discord.gg/rkERZ5eNU8
about: You can ask and answer questions here.
- name: Documentation
url: https://https://sparckles.github.io/Robyn/#/
url: https://robyn.tech
about: The Robyn documentation.
7 changes: 4 additions & 3 deletions .github/workflows/preview-deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
target: [x64, x86]
steps:
- uses: actions/checkout@v3
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
target: [x86_64, i686]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -101,6 +101,7 @@ jobs:
{ version: "3.9", abi: "cp39-cp39" },
{ version: "3.10", abi: "cp310-cp310" },
{ version: "3.11", abi: "cp311-cp311" },
{ version: "3.12", abi: "cp311-cp312" },
]
target: [aarch64, armv7]
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
os: ["windows", "ubuntu", "macos"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: ${{ matrix.os }} tests with python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
steps:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
target: [x64, x86]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
target: [x86_64, i686]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -112,6 +112,7 @@ jobs:
{ version: "3.9", abi: "cp39-cp39" },
{ version: "3.10", abi: "cp310-cp310" },
{ version: "3.11", abi: "cp311-cp311" },
{ version: "3.12", abi: "cp312-cp312" },
]
target: [aarch64, armv7]
steps:
Expand Down
34 changes: 17 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.python-version
/target

# ignore pre compiled binaries
Expand All @@ -23,36 +24,35 @@ robyn.env

# new docs dependencies
# dependencies
new_docs/node_modules
new_docs/.pnp
new_docs/.pnp.js
docs_src/node_modules
docs_src/.pnp
docs_src/.pnp.js

# testing
new_docs/coverage
docs_src/coverage

# next.js
new_docs/.next/
new_docs/out/
docs_src/.next/
docs_src/out/

# production
new_docs/build
docs_src/build

# misc
new_docs/.DS_Store
new_docs/*.pem
docs_src/.DS_Store
docs_src/*.pem

# debug
new_docs/npm-debug.log*
new_docs/yarn-debug.log*
new_docs/yarn-error.log*
new_docs/.pnpm-debug.log*
docs_src/npm-debug.log*
docs_src/yarn-debug.log*
docs_src/yarn-error.log*
docs_src/.pnpm-debug.log*

# local env files
new_docs/.env*.local
docs_src/.env*.local

# vercel
new_docs/.vercel
docs_src/.vercel

# generated files
new_docs/public/rss/

docs_src/public/rss/
10 changes: 4 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
repos:
- repo: https://github.com/psf/black
rev: 23.10.0
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.1
rev: v0.1.3
hooks:
- id: ruff

args:
- --fix
- id: ruff-format
ci:
autoupdate_schedule: weekly
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.44.1"
version = "0.44.2"
authors = ["Sanskar Jethi <[email protected]>"]
edition = "2021"
description = "A web server that is fast!"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[![License](https://img.shields.io/badge/License-BSD_2.0-black)](#license)
![Python](https://img.shields.io/badge/Support-Version%20%E2%89%A5%203.8-brightgreen)

[![view - Documentation](https://img.shields.io/badge/view-Documentation-blue?style=for-the-badge)](https://sparckles.github.io/Robyn/#/)
[![view - Documentation](https://img.shields.io/badge/view-Documentation-blue?style=for-the-badge)](https://robyn.tech/documentation)
[![Discord](https://img.shields.io/discord/999782964143603713?label=discord&logo=discord&logoColor=white&style=for-the-badge&color=blue)](https://discord.gg/rkERZ5eNU8)

Robyn is a High-Performance, Community-Driven, and Innovator Friendly Web Framework with a Rust runtime. You can learn more by checking our [community resources](https://beta.robyn.tech/documentation/api_reference/community-resources#talks)!
Expand Down Expand Up @@ -121,7 +121,7 @@ python --version
Please read the [code of conduct](https://github.com/sparckles/Robyn/blob/main/CODE_OF_CONDUCT.md) and go through [CONTRIBUTING.md](https://github.com/sparckles/Robyn/blob/main/CONTRIBUTING.md) before contributing to Robyn.
Feel free to open an issue for any clarifications or suggestions.

If you're feeling curious. You can take a look at a more detailed architecture [here](https://sparckles.github.io/Robyn/#/architecture).
If you're feeling curious. You can take a look at a more detailed architecture [here](https://robyn.tech/documentation/architecture).

If you still need help to get started, feel free to reach out on our [community discord](https://discord.gg/rkERZ5eNU8).

Expand Down
1 change: 1 addition & 0 deletions docs
150 changes: 0 additions & 150 deletions docs/README.md

This file was deleted.

17 changes: 0 additions & 17 deletions docs/_sidebar.md

This file was deleted.

5 changes: 0 additions & 5 deletions docs/api.md

This file was deleted.

Loading

0 comments on commit 1baedf4

Please sign in to comment.