Skip to content

Commit 3e89251

Browse files
committed
feature: add a DAY type for Pydays
1 parent 5207180 commit 3e89251

5 files changed

Lines changed: 13 additions & 22 deletions

File tree

_data/archive.yml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -998,20 +998,6 @@
998998
longitude: 18.0710935
999999

10001000
- conference: Django Day Copenhagen
1001-
year: 2023
1002-
link: https://2023.djangoday.dk/
1003-
cfp: '2023-08-31 23:59:59'
1004-
timezone: Europe/Copenhagen
1005-
place: Copenhagen, Denmark
1006-
start: 2023-10-06
1007-
end: 2023-10-06
1008-
sub: WEB
1009-
location:
1010-
- title: Django Day Copenhagen 2023
1011-
latitude: 55.6867243
1012-
longitude: 12.5700724
1013-
1014-
- conference: DjangoDay Copenhagen
10151001
year: 2023
10161002
link: https://2023.djangoday.dk/
10171003
cfp_link: https://2023.djangoday.dk/cfp/
@@ -1022,9 +1008,9 @@
10221008
end: 2023-10-06
10231009
twitter: djangodenmark
10241010
mastodon: https://fosstodon.org/@djangodenmark
1025-
sub: WEB
1011+
sub: WEB,DAY
10261012
location:
1027-
- title: DjangoDay Copenhagen 2023
1013+
- title: Django Day Copenhagen 2023
10281014
latitude: 55.6867243
10291015
longitude: 12.5700724
10301016

@@ -1657,7 +1643,7 @@
16571643
end: 2023-06-03
16581644
sponsor: https://forms.gle/7SoVfzBgwYfv1Qw59
16591645
twitter: PyDayLaPaz
1660-
sub: PY
1646+
sub: DAY
16611647
location:
16621648
- title: PyDay La Paz 2023
16631649
latitude: -16.4955455
@@ -2602,7 +2588,7 @@
26022588
place: Copenhagen, Denmark
26032589
start: 2022-04-08
26042590
end: 2022-04-09
2605-
sub: WEB
2591+
sub: WEB,DAY
26062592
location:
26072593
- title: Django Day Copenhagen 2022
26082594
latitude: 55.6867243

_data/conferences.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@
538538
place: Copiapó, Chile
539539
start: 2024-06-12
540540
end: 2024-06-12
541-
sub: PY
541+
sub: DAY
542542
location:
543543
- title: PyDay Copiapó 2024
544544
latitude: -27.5406034
@@ -552,7 +552,7 @@
552552
place: Valparaiso, Chile
553553
start: 2024-06-14
554554
end: 2024-06-14
555-
sub: PY
555+
sub: DAY
556556
location:
557557
- title: PyDay Valparaiso 2024
558558
latitude: -33.0458456
@@ -986,7 +986,7 @@
986986
end: 2024-10-04
987987
twitter: djangodenmark
988988
mastodon: https://fosstodon.org/@djangodenmark
989-
sub: WEB
989+
sub: WEB,DAY
990990
location:
991991
- title: Django Day Copenhagen 2024
992992
latitude: 55.6867243

_data/types.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@
2020
- name: Python Camps
2121
sub: CAMP
2222
color: "#303030"
23+
- name: Python Day
24+
sub: DAY
25+
color: "#3C1670"

utils/tidy_conf/data/subs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,5 @@ GEO:
4646
CAMP:
4747
- pycamp
4848
- barcamp
49+
DAY:
50+
- pyday

utils/tidy_conf/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def validate_location_if_not_online(self):
6767
@classmethod
6868
def validate_sub(cls, v):
6969
for x in v.split(","):
70-
if x not in ("PY", "DATA", "WEB", "BIZ", "GEO", "CAMP", "SCIPY"):
70+
if x not in ("PY", "DATA", "WEB", "BIZ", "GEO", "CAMP", "SCIPY", "DAY"):
7171
raise ValueError("Invalid submission type")
7272
return v
7373

0 commit comments

Comments
 (0)