Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# in the templates via {{ site.myvariable }}.

title: "RustPython"
description: "An open source Python 3 (CPython >= 3.11.0) interpreter written in Rust 🐍 😱 🤘"
description: "An open source Python 3 (CPython >= 3.14.0) interpreter written in Rust 🐍 😱 🤘"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For better maintainability, consider defining the CPython version as a separate variable and referencing it here. This makes future updates easier and less error-prone.

For example, you could add cpython_version: "3.14.0" at the top level of this file and then change this line to:

description: "An open source Python 3 (CPython >= {{ site.cpython_version }}) interpreter written in Rust 🐍 😱 🤘"

This would centralize the version number, making it easier to manage.

# baseurl: "/" # the subpath of your site, e.g. /blog
url: "https://rustpython.github.io" # the base hostname & protocol for your site, e.g. http://example.com
github_username: RustPython
Expand Down