Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support Python 3.12 #1415

Merged
merged 14 commits into from
Mar 13, 2024
Merged
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