Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: barcalendar Redwood updates #529

Merged
merged 1 commit into from
Jun 25, 2024
Merged
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
11 changes: 6 additions & 5 deletions barcalendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,10 +404,10 @@ def parse_version_name(line):
# The current versions of everything. Use the same strings as the keys in the various sections below.
CURRENT = {
"Open edX": parse_version_name(versions['OPENEDX_COMMON_VERSION']),
"Python": "3.8",
"Python": "3.11",
"Django": "4.2",
"Ubuntu": "20.04",
"Node": "16.x",
"Node": "18.x",
"Mongo": parse_version_number(versions['DOCKER_IMAGE_MONGODB']),
"MySQL": parse_version_number(versions['DOCKER_IMAGE_MYSQL']),
"Elasticsearch": parse_version_number(versions['DOCKER_IMAGE_ELASTICSEARCH']),
Expand All @@ -416,10 +416,10 @@ def parse_version_name(line):
}

EDX = {
"Python": "3.8",
"Python": "3.11",
"Django": "4.2",
"Ubuntu": "20.04",
"Node": "16.x",
"Node": "18.x",
"Mongo": "4.2",
"MySQL": "5.7",
"Elasticsearch": "7.10",
Expand Down Expand Up @@ -454,9 +454,10 @@ def parse_version_name(line):
("Olive", 2022, 12),
("Palm", 2023, 6),
("Quince", 2023, 12),
("Redwood", 2024, 6),
]
# https://www.treenames.net/common_tree_names.html
future = ["Redwood", "Sumac", "Teak"] + list("UVWXYZ")
future = ["Sumac", "Teak"] + list("UVWXYZ")
target_length = 6 # months per release

releases = list(itertools.chain(names, [(name, None, None) for name in future]))
Expand Down
Loading