Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

add python 3.11 support, update mashumaro dep #724

Merged
merged 2 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11"

name: Check Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version:
- "3.10"
- "3.11"

name: Check Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down
156 changes: 91 additions & 65 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Topic :: Database :: Database Engines/Servers",
Expand Down Expand Up @@ -45,6 +46,7 @@ oracledb = {version = "*", optional=true}
pyodbc = {version="^4.0.39", optional=true}
typing-extensions = ">=4.0.1"
attrs = "^23.1.0"
mashumaro = {version = ">=3.8.1,<3.9.0", extras = ["msgpack"]}

[tool.poetry.dev-dependencies]
parameterized = "*"
Expand Down