Skip to content

Commit

Permalink
chore: barcalendar Redwood updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cmltaWt0 committed Jun 25, 2024
1 parent c203255 commit f02ce1f
Showing 1 changed file with 6 additions and 5 deletions.
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

0 comments on commit f02ce1f

Please sign in to comment.