Skip to content

Commit bff9d08

Browse files
authored
Update happyx web framework for nim, javascript and python (the-benchmarker#7586)
* change python/happyx to happyxpy library * update Nim/happyx version * rename javascript/happyx to javascript/happyx-js * fix python/happyx deps * upgrade version (�4.0 -> �4.1) * update version
1 parent 352b67c commit bff9d08

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

nim/happyx/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
framework:
22
github: HapticX/happyx
3-
version: 3.11
3+
version: 4.1
44

55
build_opts: "-d:beast -d:disableApiDoc -d:disableDefDeco -d:useMalloc --threads:on --opt:speed"
66
build_with: nimble install -d -y

nim/happyx/server.nimble

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
description = "Macro-oriented asynchronous web-framework written with ♥"
44
author = "HapticX"
5-
version = "3.11.0"
5+
version = "4.1.1"
66
license = "MIT"
77
srcDir = "src"
88
installExt = @["nim"]
99
bin = @["hpx"]
1010

1111
# Dependencies
1212

13-
requires "happyx >= 3.11 & < 3.12"
13+
requires "happyx >= 4.1 & < 4.2"
1414
requires "cligen"
1515
requires "checksums"
1616
requires "regex"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
framework:
2-
website: hapticx.nim.town
2+
website: hapticx.github.io/happyx
33
github: HapticX/happyx
4-
version: 3.8
4+
version: 4.1
55

66
engines:
7-
- happyx
7+
- happyxpy
88

99
language:
1010
engines:
11-
happyx:
11+
happyxpy:
1212
command: python server.py

python/happyx/pyproject.toml renamed to python/happyxpy/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ requires = ["flit_core"]
77
name='server'
88
version = '1.0.0'
99
description = "Simple benchmark implementation"
10-
dependencies = ["happyx>=3.8,<3.9"]
10+
dependencies = ["happyxpy>=4.1,<4.2"]

python/happyx/server.py renamed to python/happyxpy/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from happyx import Server
1+
from happyxpy import Server
22

33
app = Server("0.0.0.0", 3000)
44

0 commit comments

Comments
 (0)