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/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
pytest --cov=src/ tests/unit --cov-report=xml

- name: Upload coverage report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pytest-coverage-report
path: coverage.xml
Expand Down
4 changes: 3 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ repos:
- id: check-merge-conflict

- repo: https://github.com/asottile/setup-cfg-fmt
rev: v1.17.0
rev: v2.5.0
hooks:
- id: setup-cfg-fmt
args:
- --include-version-classifiers

- repo: https://github.com/myint/autoflake
rev: v1.4
Expand Down
10 changes: 6 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,18 @@ url = https://github.com/firebolt-db/firebolt-sqlalchemy
author = Firebolt
author_email = pypi@firebolt.io
license = Apache-2.0
license_file = LICENSE
license_files = LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
License :: OSI Approved :: MIT License
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
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
download_url = https://github.com/firebolt-db/firebolt-sqlalchemy/archive/refs/tags/0.0.9.tar.gz
project_urls =
Bug Tracker = https://github.com/firebolt-db/firebolt-sqlalchemy
Expand All @@ -27,7 +29,7 @@ packages = find:
install_requires =
firebolt-sdk>=1.5.0
sqlalchemy>=1.0.0
python_requires = >=3.7
python_requires = >=3.8
package_dir =
= src

Expand All @@ -46,7 +48,7 @@ dev =
greenlet==2.0.2
mock==4.0.3
mypy==0.910
pre-commit==2.15.0
pre-commit==3.5.0
pytest==7.2.0
pytest-cov==3.0.0
pytest-trio==0.8.0
Expand Down
Loading