-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow using the package with Python 3.8 and higher. Test all Python versions in the CI. Fixes MRGFY-3702 Change-Id: I7ef510cacf11fc23572abaeac8c91f60b12fb889
- Loading branch information
1 parent
056cae4
commit a39dcf4
Showing
4 changed files
with
72 additions
and
12 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 |
---|---|---|
|
@@ -9,13 +9,17 @@ on: | |
|
||
jobs: | ||
test: | ||
name: "Test with Python ${{ matrix.python-version }}" | ||
timeout-minutes: 5 | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: ">=3.12" | ||
python-version: "${{ matrix.python-version }}" | ||
- run: | | ||
pip install -r requirements-poetry.txt | ||
poetry install --sync | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = ["Charly Laurent <[email protected]>"] | |
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.12.3,<4.0" | ||
python = ">=3.8,<4.0" | ||
sqlparse = ">=0.5.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
|