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

Commit 38b9f90

Browse files
authored
Merge pull request #724 from datafold/add_py_3_11
add python 3.11 support, update mashumaro dep
2 parents 01ef716 + c683020 commit 38b9f90

File tree

4 files changed

+95
-66
lines changed

4 files changed

+95
-66
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- "3.8"
2222
- "3.9"
2323
- "3.10"
24+
- "3.11"
2425

2526
name: Check Python ${{ matrix.python-version }} on ${{ matrix.os }}
2627
runs-on: ${{ matrix.os }}

.github/workflows/ci_full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
matrix:
2222
os: [ubuntu-latest]
2323
python-version:
24-
- "3.10"
24+
- "3.11"
2525

2626
name: Check Python ${{ matrix.python-version }} on ${{ matrix.os }}
2727
runs-on: ${{ matrix.os }}

poetry.lock

Lines changed: 91 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ classifiers = [
1414
"Programming Language :: Python :: 3.8",
1515
"Programming Language :: Python :: 3.9",
1616
"Programming Language :: Python :: 3.10",
17+
"Programming Language :: Python :: 3.11",
1718
"Development Status :: 2 - Pre-Alpha",
1819
"Environment :: Console",
1920
"Topic :: Database :: Database Engines/Servers",
@@ -45,6 +46,7 @@ oracledb = {version = "*", optional=true}
4546
pyodbc = {version="^4.0.39", optional=true}
4647
typing-extensions = ">=4.0.1"
4748
attrs = "^23.1.0"
49+
mashumaro = {version = ">=3.8.1,<3.9.0", extras = ["msgpack"]}
4850

4951
[tool.poetry.dev-dependencies]
5052
parameterized = "*"

0 commit comments

Comments
 (0)