Skip to content

Commit

Permalink
Merge pull request #120 from unkn-wn/spring25
Browse files Browse the repository at this point in the history
add spring 2025
  • Loading branch information
knightron0 authored Oct 8, 2024
2 parents e0c4716 + 39bf19c commit 8895940
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion server/harmonize.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
semesters = []
all_classes = []
# TODO: change for semester
latest_sem = "Fall 2024"
latest_sem = "Spring 2025"

for file_name in os.listdir(args.folder):
path = args.folder + file_name
Expand Down
2 changes: 1 addition & 1 deletion server/scrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def format_instructors(by_sched):
return by_sched

parser = argparse.ArgumentParser(description='which semester')
parser.add_argument("-sem", default="Fall 2024", dest="sem", help="which semester (default: Fall 2024)")
parser.add_argument("-sem", default="Spring 2025", dest="sem", help="which semester (default: Spring 2025)")

args = parser.parse_args()

Expand Down
3 changes: 2 additions & 1 deletion src/lib/utils.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const semesters = ["Fall 2024", "Spring 2024", "Fall 2023", "Spring 2023", "Fall 2022", "Spring 2022", "Fall 2021", "Spring 2021", "Fall 2020", "Spring 2020", "Fall 2019"]
export const semesters = ["Spring 2025", "Fall 2024", "Spring 2024", "Fall 2023", "Spring 2023", "Fall 2022", "Spring 2022", "Fall 2021", "Spring 2021", "Fall 2020", "Spring 2020", "Fall 2019"]
export const subjects = ['AAE', 'AAS', 'ABE', 'AD', 'AFT', 'AGEC', 'AGR', 'AGRY', 'AMST', 'ANSC', 'ANTH', 'ARAB', 'ASAM', 'ASEC', 'ASL', 'ASM', 'ASTR', 'AT', 'BAND', 'BCHM', 'BIOL', 'BME', 'BMS', 'BTNY', 'CAND', 'CDIS', 'CE', 'CEM', 'CGT', 'CHE', 'CHM', 'CHNS', 'CLCS', 'CLPH', 'CM', 'CMPL', 'CNIT', 'COM', 'CPB', 'CS', 'CSR', 'DANC', 'EAPS', 'ECE', 'ECET', 'ECON', 'EDCI', 'EDPS', 'EDST', 'EEE', 'ENE', 'ENGL', 'ENGR', 'ENGT', 'ENTM', 'ENTR', 'EPCS', 'FLM', 'FNR', 'FR', 'FS', 'FVS', 'GER', 'GRAD', 'GREK', 'GS', 'GSLA', 'HDFS', 'HEBR', 'HIST', 'HK', 'HONR', 'HORT', 'HSCI', 'HSOP', 'HTM', 'IDE', 'IDIS', 'IE', 'IET', 'ILS', 'IMPH', 'IPPH', 'IT', 'ITAL', 'JPNS', 'JWST', 'KOR', 'LA', 'LALS', 'LATN', 'LC', 'LING', 'MA', 'MCMP', 'ME', 'MET', 'MFET', 'MGMT', 'MSE', 'MSL', 'MUS', 'NRES', 'NS', 'NUCL', 'NUPH', 'NUR', 'NUTR', 'OBHR', 'OLS', 'PES', 'PHIL', 'PHPR', 'PHRM', 'PHSC', 'PHYS', 'POL', 'PSY', 'PTGS', 'PUBH', 'REL', 'RUSS', 'SA', 'SCI', 'SCLA', 'SFS', 'SLHS', 'SOC', 'SPAN', 'STAT', 'SYS', 'TDM', 'TECH', 'THTR', 'TLI', 'VCS', 'VIP', 'VM', 'WGSS']
export const genedsOptions = [
{ label: "Behavioral/Social Science", value: "BSS" },
Expand All @@ -13,6 +13,7 @@ export const genedsOptions = [
{ label: "Written Communication", value: "WC" }
]
export const semesterOptions = [
{ label: "Spring 2025", value: "Spring 2025" },
{ label: "Fall 2024", value: "Fall 2024" },
{ label: "Spring 2024", value: "Spring 2024" },
{ label: "Fall 2023", value: "Fall 2023" },
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {

import { subjectStyles, semesterStyles, subjects, semesterOptions, subjectOptions, genedsOptions, instructorStyles } from '@/lib/utils';

const currentSemester = "Fall 2024";
const currentSemester = "Spring 2025";

const CourseCatalog = () => {

Expand Down

0 comments on commit 8895940

Please sign in to comment.