I used this code for the data in the selection
def _get_years(self):
this_year = datetime.today().year
results = [(str(x), str(x)) for x in range(this_year - 40, this_year + 1)]
return results
year_selection = fields.Selection(_get_years, string="Select Year", default=current_year)