Skip to content

Commit

Permalink
Merge pull request #465 from raccoongang/max/quince-update
Browse files Browse the repository at this point in the history
chore: barcalendar Quince updates
  • Loading branch information
cmltaWt0 committed Dec 16, 2023
2 parents 4feb896 + 09ddeed commit 1c66299
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions barcalendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def parse_version_name(line):
CURRENT = {
"Open edX": parse_version_name(versions['OPENEDX_COMMON_VERSION']),
"Python": "3.8",
"Django": "3.2",
"Django": "4.2",
"Ubuntu": "20.04",
"Node": "16.x",
"Mongo": parse_version_number(versions['DOCKER_IMAGE_MONGODB']),
Expand All @@ -417,7 +417,7 @@ def parse_version_name(line):

EDX = {
"Python": "3.8",
"Django": "3.2",
"Django": "4.2",
"Ubuntu": "20.04",
"Node": "16.x",
"Mongo": "4.2",
Expand Down Expand Up @@ -453,9 +453,10 @@ def parse_version_name(line):
("Nutmeg", 2022, 6),
("Olive", 2022, 12),
("Palm", 2023, 6),
("Quince", 2023, 12),
]
# https://www.treenames.net/common_tree_names.html
future = ["Quince", "Redwood", "Sumac", "Teak"] + list("UVWXYZ")
future = ["Redwood", "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 1c66299

Please sign in to comment.