-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepared for the release 5.1.0 (#538)
* Disable failing test ExceptionTest_exasol+pyodbc_7_1_17.test_integrity_error * Update the minimum python version to 3.9.2 to fix CVE-2024-12797 in cryptography * Use poetry 2.0.1 in the GitHub workflows * Fix formatting Co-authored-by: Torsten Kilias <[email protected]> Co-authored-by: Mikhail Beck <[email protected]>
- Loading branch information
Showing
16 changed files
with
589 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,8 @@ jobs: | |
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
poetry-version: 2.0.1 | ||
|
||
- name: Build Artifacts | ||
run: poetry build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,8 @@ jobs: | |
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
poetry-version: 2.0.1 | ||
|
||
- name: Check Tag Version | ||
# make sure the pushed/created tag matched the project version | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,8 @@ jobs: | |
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
poetry-version: 2.0.1 | ||
|
||
- name: Check Version(s) | ||
run: | | ||
|
@@ -36,6 +38,8 @@ jobs: | |
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
poetry-version: 2.0.1 | ||
|
||
- name: Build Documentation | ||
run: | | ||
|
@@ -61,6 +65,7 @@ jobs: | |
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
poetry-version: 2.0.1 | ||
|
||
- name: Run lint | ||
run: poetry run nox -s lint:code | ||
|
@@ -88,6 +93,7 @@ jobs: | |
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
poetry-version: 2.0.1 | ||
|
||
- name: Run type-check | ||
run: poetry run nox -s lint:typing | ||
|
@@ -108,6 +114,7 @@ jobs: | |
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
poetry-version: 2.0.1 | ||
|
||
- name: Run security linter | ||
run: poetry run nox -s lint:security | ||
|
@@ -131,6 +138,7 @@ jobs: | |
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
python-version: "3.9" | ||
poetry-version: 2.0.1 | ||
|
||
- name: Run format check | ||
run: poetry run nox -s project:format | ||
|
@@ -153,6 +161,7 @@ jobs: | |
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
poetry-version: 2.0.1 | ||
|
||
- name: Run Tests and Collect Coverage | ||
run: poetry run nox -s test:unit -- -- --coverage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,8 @@ jobs: | |
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
poetry-version: 2.0.1 | ||
|
||
- name: Build Documentation | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,8 @@ jobs: | |
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
poetry-version: 2.0.1 | ||
|
||
- name: Generate matrix | ||
run: poetry run nox -s matrix:all | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,8 @@ jobs: | |
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
poetry-version: 2.0.1 | ||
|
||
- name: Generate matrix | ||
run: poetry run nox -s matrix:exasol | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,8 @@ jobs: | |
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
poetry-version: 2.0.1 | ||
|
||
- name: Generate matrix | ||
run: poetry run nox -s matrix:python | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,8 @@ jobs: | |
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
poetry-version: 2.0.1 | ||
|
||
- name: Download Artifacts | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ jobs: | |
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
poetry-version: 2.0.1 | ||
|
||
- name: Install via apt | ||
run: sudo apt-get install unixodbc unixodbc-dev libboost-date-time-dev libboost-locale-dev libboost-system-dev | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 5.1.0 — 2025-02-14 | ||
|
||
## 🗑️ Removed | ||
|
||
- Dropped python 3.8 support | ||
* If you still depend on python 3.8 use the 5.x version line | ||
|
||
## 🧰 Internal | ||
|
||
- Relocked dependencies | ||
- Removed pyexasol dbapi2 api shim | ||
(Now it is using the dbapi2 shim provided by the pyexasol project) | ||
- Remove testing against Exasol 7.0 | ||
|
||
## 📚 Documentation | ||
|
||
* Added support for multiversion documentation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1 @@ | ||
# Unreleased | ||
|
||
## 🗑️ Removed | ||
|
||
- Dropped python 3.8 support | ||
* If you still depend on python 3.8 use the 5.x version line | ||
|
||
## 🧰 Internal | ||
|
||
- Relocked dependencies | ||
- Removed pyexasol dbapi2 api shim | ||
(Now it is using the dbapi2 shim provided by the pyexasol project) | ||
- Remove testing against Exasol 7.0 | ||
|
||
## 📚 Documentation | ||
|
||
* Added support for multiversion documentation | ||
|
Oops, something went wrong.