Skip to content

Commit 2d70f99

Browse files
committed
Bump versions
1 parent 29ad8db commit 2d70f99

6 files changed

Lines changed: 26 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
0.20.5
2+
======
3+
4+
* Update gdbm from 1.25 to 1.26
5+
* Update libffi from 3.5.1 to 3.5.2
6+
* Update readline from 8.2.13 to 8.3
7+
* Update sqlite from 3.50.2 to 3.50.4
8+
9+
110
0.20.4
211
======
312

relenv/build/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
from ..pyversions import python_versions, Version
1515

16-
from ..common import build_arch
16+
from ..common import build_arch, DEFAULT_PYTHON
1717

1818

1919
def platform_module():
@@ -58,7 +58,7 @@ def setup_parser(subparsers):
5858
)
5959
build_subparser.add_argument(
6060
"--python",
61-
default="3.10.17",
61+
default=DEFAULT_PYTHON,
6262
type=str,
6363
help="The python version [default: %(default)s]",
6464
)

relenv/build/darwin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ def build_python(env, dirs, logfp):
9999
download={
100100
"url": "https://sqlite.org/2025/sqlite-autoconf-{version}.tar.gz",
101101
"fallback_url": "https://woz.io/relenv/dependencies/sqlite-autoconf-{version}.tar.gz",
102-
"version": "3500200",
103-
"checksum": "f57c0e54fcddf91f73916987d5c52e743c8bfa76",
102+
"version": "3500400",
103+
"checksum": "145048005c777796dd8494aa1cfed304e8c34283",
104104
},
105105
)
106106

relenv/build/linux.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -500,8 +500,8 @@ def build_python(env, dirs, logfp):
500500
build_func=build_sqlite,
501501
download={
502502
"url": "https://sqlite.org/2025/sqlite-autoconf-{version}.tar.gz",
503-
"version": "3500200",
504-
"checksum": "f57c0e54fcddf91f73916987d5c52e743c8bfa76",
503+
"version": "3500400",
504+
"checksum": "145048005c777796dd8494aa1cfed304e8c34283",
505505
"checkfunc": sqlite_version,
506506
"checkurl": "https://sqlite.org/",
507507
},
@@ -523,8 +523,8 @@ def build_python(env, dirs, logfp):
523523
build_func=build_gdbm,
524524
download={
525525
"url": "https://ftp.gnu.org/gnu/gdbm/gdbm-{version}.tar.gz",
526-
"version": "1.25",
527-
"checksum": "d55bdf2bb5f92f80006166dd8a8323cb2a428bd1",
526+
"version": "1.26",
527+
"checksum": "6cee3657de948e691e8df26509157be950cef4d4",
528528
"checkfunc": tarball_version,
529529
},
530530
)
@@ -548,8 +548,8 @@ def build_python(env, dirs, logfp):
548548
build_libffi,
549549
download={
550550
"url": "https://github.com/libffi/libffi/releases/download/v{version}/libffi-{version}.tar.gz",
551-
"version": "3.5.1",
552-
"checksum": "5375e956b0d662e118e47758bd656861e43ba3ef",
551+
"version": "3.5.2",
552+
"checksum": "2bd35b135b0eeb5c631e02422c9dbe786ddb626a",
553553
"checkfunc": github_version,
554554
"checkurl": "https://github.com/libffi/libffi/releases/",
555555
},
@@ -595,8 +595,8 @@ def build_python(env, dirs, logfp):
595595
wait_on=["ncurses"],
596596
download={
597597
"url": "https://ftp.gnu.org/gnu/readline/readline-{version}.tar.gz",
598-
"version": "8.2.13",
599-
"checksum": "5ffb6a334c2422acbe8f4d2cb11e345265c8d930",
598+
"version": "8.3",
599+
"checksum": "2c05ae9350b695f69d70b47f17f092611de2081f",
600600
"checkfunc": tarball_version,
601601
},
602602
)

relenv/common.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@
1818
import time
1919

2020
# relenv package version
21-
__version__ = "0.20.4"
21+
__version__ = "0.20.5"
2222

2323
MODULE_DIR = pathlib.Path(__file__).resolve().parent
2424

25+
DEFAULT_PYTHON = "3.10.18"
26+
2527
LINUX = "linux"
2628
WIN32 = "win32"
2729
DARWIN = "darwin"

relenv/fetch.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from .common import (
1212
CHECK_HOSTS,
1313
DATA_DIR,
14+
DEFAULT_PYTHON,
1415
__version__,
1516
build_arch,
1617
check_url,
@@ -39,7 +40,7 @@ def setup_parser(subparsers):
3940
)
4041
subparser.add_argument(
4142
"--python",
42-
default="3.10.18",
43+
default=DEFAULT_PYTHON,
4344
type=str,
4445
help="The python version [default: %(default)s]",
4546
)

0 commit comments

Comments
 (0)