diff --git a/README.rst b/README.rst index d6dd305..1dc46ee 100644 --- a/README.rst +++ b/README.rst @@ -72,7 +72,7 @@ For each dataset, the first year listed is the default. * acs1: `ACS 1 Year Estimates `_ (2024, 2023, 2022, 2021, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011) * acs5dp: `ACS 5 Year Estimates, Data Profiles `_ (2023, 2022, 2021, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011, 2010, 2009) * acs3dp: `ACS 3 Year Estimates, Data Profiles `_ (2013, 2012) -* acs1dp: `ACS 1 Year Estimates, Data Profiles `_ (2023, 2022, 2021, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011) +* acs1dp: `ACS 1 Year Estimates, Data Profiles `_ (2024, 2023, 2022, 2021, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011) * acs5st: `ACS 5 Year Estimates, Subject Tables `_ (2023, 2022, 2021, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011, 2010, 2009) * sf1: `Census Summary File 1 `_ (2010) * pl: `Redistricting Data Summary File `_ (2020, 2010, 2000) diff --git a/census/core.py b/census/core.py index 71ac24e..21ce2eb 100644 --- a/census/core.py +++ b/census/core.py @@ -440,7 +440,7 @@ class ACS1DpClient(ACS1Client): dataset = 'acs1/profile' - years = (2023, 2022, 2021, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012) + years = (2024, 2023, 2022, 2021, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012) class SF1Client(Client): diff --git a/census/tests/test_census.py b/census/tests/test_census.py index 715e637..68c8e49 100644 --- a/census/tests/test_census.py +++ b/census/tests/test_census.py @@ -224,7 +224,7 @@ def test_acs1dp(self): ('us', 'United States'), ('state', 'Maryland'), ('state_congressional_district', - 'Congressional District 6 (118th Congress), Maryland'), + 'Congressional District 6 (119th Congress), Maryland'), ) self.check_endpoints('acs1dp', tests)