Skip to content

Commit

Permalink
Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Burmak committed Jul 30, 2023
1 parent a972542 commit 9d4ebe8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: main
name: Main

on:
push: { branches: [main] }
Expand All @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
cache: pip
- name: "lint: isort"
run: make isort
Expand All @@ -34,6 +34,7 @@ jobs:
run: make bandit

test:
name: test (Python ${{ matrix.target.python }}, ClickHouse ${{ matrix.clickhouse }})
needs: lint
strategy:
fail-fast: false
Expand All @@ -42,6 +43,8 @@ jobs:
- python: "3.6"
ubuntu: "20.04"
- python: "3.10"
ubuntu: "22.04"
- python: "3.11"
ubuntu: "latest"
clickhouse:
- "21.8.15.7"
Expand All @@ -59,4 +62,4 @@ jobs:
- name: run unit tests
run: make test-unit
- name: run integration tests
run: make test-integration
run: CLICKHOUSE_VERSION=${{ matrix.clickhouse }} make test-integration
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10
3.11
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
"Typing :: Typed",
],
Expand Down

0 comments on commit 9d4ebe8

Please sign in to comment.