Skip to content

Commit

Permalink
Add python 3.10 and update snowflake-connector-python to ~=3.0 (#37)
Browse files Browse the repository at this point in the history
* Update Github workflow to test on 3.10
* Update snowflake-connector-python to ~=3.0

---------

Co-authored-by: Matthieu Caneill <matthieucan@users.noreply.github.com>
  • Loading branch information
michael-the1 and matthieucan authored Mar 1, 2023
1 parent 3ac93f2 commit 37d168f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ repos:
rev: v4.3.0
hooks:
- id: check-added-large-files
files: 'src/diepvries/'
files: 'src/diepvries/'
- repo: local
hooks:
- id: tox-lint
Expand All @@ -13,3 +13,4 @@ repos:
language: system
files: ''
verbose: true
pass_filenames: false
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.4] - 2023-03-01
### Added
- Add support for python 3.10 (#37)

### Changed
- Update `snowflake-connector-python` to `~=3.0` (#37)

## [0.6.3] - 2022-08-25
### Added
- Add `StagingTable` class (#30).
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ packages = find:
include_package_data = true
package_dir = = src
install_requires =
snowflake-connector-python~=2.4
snowflake-connector-python~=3.0
test_requires =
pytest~=6.2

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38,py39,lint,doc
envlist = py38,py39,py310,lint,doc
isolated_build = True

# UNIT TESTS #
Expand Down

0 comments on commit 37d168f

Please sign in to comment.