Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion flowsa/data_source_scripts/BLS_CES.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
1 change: 1 addition & 0 deletions flowsa/methods/flowbyactivitymethods/BLS_CES.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ years:
- 2020
- 2021
- 2022
- 2023
11 changes: 6 additions & 5 deletions flowsa/methods/flowbyactivitymethods/Census_ACS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ years:
- 2020
- 2021
- 2022
- 2023

tables:
DP03:
Expand All @@ -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'
Expand All @@ -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
Expand All @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down