Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into fix-content-type-openapi
Browse files Browse the repository at this point in the history
  • Loading branch information
VishnuSanal committed Oct 27, 2024
2 parents 1428458 + 40f7f0a commit c43ef44
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/preview-deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
target: ${{ matrix.target }}
manylinux: auto
args: -i python${{matrix.python.version}} --release --out dist --no-sdist
- uses: uraimo/run-on-arch-action@v2.7.1
- uses: uraimo/run-on-arch-action@v2
name: Install build wheel
with:
arch: ${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
target: ${{ matrix.target }}
manylinux: auto
args: -i python${{matrix.python.version}} --release --out dist
- uses: uraimo/run-on-arch-action@v2.2.0
- uses: uraimo/run-on-arch-action@v2
name: Install build wheel
with:
arch: ${{ matrix.target }}
Expand Down
69 changes: 69 additions & 0 deletions funding.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"version": "v1.0.0",
"entity": {
"type": "individual",
"role": "owner",
"name": "Sanskar Jethi",
"email": "[email protected]",
"description": "Sanskar is a FOSS engineer who created Robyn and Starfyre. Sanskar has created software for over half his life and used it for almost all of his.",
"webpageUrl": {
"url": "https://www.sanskar.me/"
}
},
"projects": [
{
"guid": "robyn",
"name": "robyn",
"description": "Robyn is one of the fastest Python web frameworks, which comes with a built in web server and a Rust runtime.",
"webpageUrl": {
"url": "https://robyn.tech/"
},
"repositoryUrl": {
"url": "https://github.com/sparckles/Robyn"
},
"licenses": ["BSD 2-Clause \"Simplified\" License"],
"tags": [
"programming",
"python",
"rust",
"web",
"backend",
"async",
"python3",
"http-server"
]
}
],
"funding": {
"channels": [
{
"guid": "mybank",
"type": "bank",
"description": "Send me an email to get my bank details"
}
],
"plans": [
{
"guid": "mybank",
"status": "active",
"name": "Support Maintainer",
"description": "Support the maintainer for his work.",
"amount": 500,
"currency": "GBP",
"frequency": "monthly",
"channels": ["mybank"]
},
{
"guid": "150",
"status": "active",
"name": " Support Contributor",
"description": "Support for one contributor per month",
"amount": 150,
"currency": "GBP",
"frequency": "monthly",
"channels": ["mybank"]
}
],
"history": []
}
}
4 changes: 2 additions & 2 deletions robyn/argument_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ def __init__(self) -> None:
if self.fast:
# doing this here before every other check
# so that processes, workers and log_level can be overridden
self.processes = self.processes or os.cpu_count() or 1
self.workers = self.workers or ((os.cpu_count() * 2) + 1) or 1
self.processes = self.processes or ((os.cpu_count() * 2) + 1) or 1
self.workers = self.workers or 2
self.log_level = self.log_level or "WARNING"

self.processes = self.processes or 1
Expand Down

0 comments on commit c43ef44

Please sign in to comment.