Skip to content

Commit

Permalink
feat: support Python 3.12 (#1415)
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke authored Mar 13, 2024
1 parent 04f4614 commit f370a5d
Show file tree
Hide file tree
Showing 5 changed files with 564 additions and 485 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.11']
python-version: ['3.11', '3.12']
pandas-version: ['<2','>=2']
# Pandas<2 is not supported on Python 3.12
exclude:
- python-version: '3.12'
pandas-version: '<2'

steps:
- uses: actions/checkout@v4
Expand All @@ -33,7 +37,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install freetds-dev libsasl2-dev libpq-dev
pip install poetry
pip install -U poetry virtualenv
poetry config virtualenvs.create false
- name: Install oracle dependencies
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Changed

- Added support for Python 3.12

### Fixed

- Restored the `HubspotPrivateApp` connector, which was deleted by error in v6.0.0
Expand Down
Loading

0 comments on commit f370a5d

Please sign in to comment.