diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 13da50277..e55f4bae2 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -31,7 +31,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - py-version: ['3.10', '3.11', '3.12'] + py-version: ['3.11', '3.12'] steps: - uses: actions/checkout@v3 diff --git a/flowsa/data_source_scripts/BLS_CES.py b/flowsa/data_source_scripts/BLS_CES.py index 28ba0d727..522482d8a 100644 --- a/flowsa/data_source_scripts/BLS_CES.py +++ b/flowsa/data_source_scripts/BLS_CES.py @@ -45,7 +45,7 @@ def bls_ces_call(config, year): short_series = series_list[x:x+50] data = json.dumps({"seriesid": short_series, - "startyear":2004, "endyear":2022, + "startyear":2004, "endyear":2023, "registrationkey": api_key}) response = make_url_request(url=config['base_url'], diff --git a/flowsa/methods/flowbyactivitymethods/BLS_CES.yaml b/flowsa/methods/flowbyactivitymethods/BLS_CES.yaml index fb642ace4..701ccb6e1 100644 --- a/flowsa/methods/flowbyactivitymethods/BLS_CES.yaml +++ b/flowsa/methods/flowbyactivitymethods/BLS_CES.yaml @@ -57,3 +57,4 @@ years: - 2020 - 2021 - 2022 +- 2023 diff --git a/flowsa/methods/flowbyactivitymethods/Census_ACS.yaml b/flowsa/methods/flowbyactivitymethods/Census_ACS.yaml index e3ecdaa6b..479ffe604 100644 --- a/flowsa/methods/flowbyactivitymethods/Census_ACS.yaml +++ b/flowsa/methods/flowbyactivitymethods/Census_ACS.yaml @@ -30,6 +30,7 @@ years: - 2020 - 2021 - 2022 +- 2023 tables: DP03: @@ -53,7 +54,7 @@ tables: DP04_0046PE: name: Owner-occupied housing unit: '% of homes' - years: '2015-2022' + years: '2015-2023' DP04_0045PE: name: Owner-occupied housing unit: '% of homes' @@ -72,15 +73,15 @@ tables: S1501_C02_009E: name: High School Degree unit: '% of people' - years: '2015-2022' + years: '2015-2023' S1501_C02_012E: name: Bachelors Degree unit: '% of people' - years: '2015-2022' + years: '2015-2023' S1501_C02_013E: name: Graduate Degree unit: '% of people' - years: '2015-2022' + years: '2015-2023' S1501_C01_009E: name: High School Degree unit: '# of people' # number of people 25 and older with a HS degree @@ -105,7 +106,7 @@ tables: S1401_C02_003E: name: K12 Enrollment unit: '% of people' - years: '2015-2022' + years: '2015-2023' S1401_C01_003E: name: K12 Enrollment unit: '# of people' diff --git a/setup.py b/setup.py index fb6ed3089..134ab8db8 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ packages=find_packages(), package_dir={'flowsa': 'flowsa'}, include_package_data=True, - python_requires=">=3.10", + python_requires=">=3.11", install_requires=[ 'fedelemflowlist @ git+https://github.com/USEPA/fedelemflowlist.git@develop#egg=fedelemflowlist', 'esupy @ git+https://github.com/USEPA/esupy.git@develop#egg=esupy',