Skip to content

Commit

Permalink
build: Remove Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ptiurin committed Jan 31, 2024
1 parent 7311266 commit e77c9d0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/jaffle-shop-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
repository: firebolt-db/jaffle_shop_firebolt
path: jaffle-shop

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/jaffle-shop-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
repository: firebolt-db/jaffle_shop_firebolt
path: jaffle-shop

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8

- name: Install dependencies
run: |
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
project_urls =
Expand All @@ -26,7 +25,7 @@ install_requires =
dbt-core~=1.5
firebolt-sdk>=1.1.0
pydantic>=0.23
python_requires = >=3.7
python_requires = >=3.8
include_package_data = True
package_dir =
= .
Expand Down

0 comments on commit e77c9d0

Please sign in to comment.