Skip to content

Commit 4355b86

Browse files
authored
chore(FIR-34713): Add missing classifiers to setup.cfg (#104)
1 parent e5075fd commit 4355b86

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
pytest --cov=src/ tests/unit --cov-report=xml
4040
4141
- name: Upload coverage report
42-
uses: actions/upload-artifact@v2
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: pytest-coverage-report
4545
path: coverage.xml

.pre-commit-config.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ repos:
66
- id: check-merge-conflict
77

88
- repo: https://github.com/asottile/setup-cfg-fmt
9-
rev: v1.17.0
9+
rev: v2.5.0
1010
hooks:
1111
- id: setup-cfg-fmt
12+
args:
13+
- --include-version-classifiers
1214

1315
- repo: https://github.com/myint/autoflake
1416
rev: v1.4

setup.cfg

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@ url = https://github.com/firebolt-db/firebolt-sqlalchemy
88
author = Firebolt
99
author_email = [email protected]
1010
license = Apache-2.0
11-
license_file = LICENSE
11+
license_files = LICENSE
1212
classifiers =
1313
License :: OSI Approved :: Apache Software License
1414
License :: OSI Approved :: MIT License
1515
Operating System :: OS Independent
1616
Programming Language :: Python :: 3
1717
Programming Language :: Python :: 3 :: Only
18-
Programming Language :: Python :: 3.7
1918
Programming Language :: Python :: 3.8
2019
Programming Language :: Python :: 3.9
20+
Programming Language :: Python :: 3.10
21+
Programming Language :: Python :: 3.11
22+
Programming Language :: Python :: 3.12
2123
download_url = https://github.com/firebolt-db/firebolt-sqlalchemy/archive/refs/tags/0.0.9.tar.gz
2224
project_urls =
2325
Bug Tracker = https://github.com/firebolt-db/firebolt-sqlalchemy
@@ -27,7 +29,7 @@ packages = find:
2729
install_requires =
2830
firebolt-sdk>=1.5.0
2931
sqlalchemy>=1.0.0
30-
python_requires = >=3.7
32+
python_requires = >=3.8
3133
package_dir =
3234
= src
3335

@@ -46,7 +48,7 @@ dev =
4648
greenlet==2.0.2
4749
mock==4.0.3
4850
mypy==0.910
49-
pre-commit==2.15.0
51+
pre-commit==3.5.0
5052
pytest==7.2.0
5153
pytest-cov==3.0.0
5254
pytest-trio==0.8.0

0 commit comments

Comments
 (0)