Skip to content

Commit

Permalink
bump: dependencies and required version
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmccarthy7 committed Jun 11, 2024
1 parent 9520fc5 commit eb4986e
Show file tree
Hide file tree
Showing 6 changed files with 706 additions and 694 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ on:

jobs:
tests:
name: tests/python-3.8
runs-on: ubuntu-20.04
name: tests/python-3.12
runs-on: ubuntu-24.04
services:
clickhouse:
image: yandex/clickhouse-server
ports:
- 9000:9000
steps:
- uses: actions/checkout@v2
- name: set up python 3.8
uses: actions/setup-python@v2
- name: set up python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.12"
- name: Python Poetry Action
uses: abatilo/actions-poetry@v2.1.0
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.1.6"
poetry-version: "1.8.3"
- name: Test
run: |
poetry install
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ on:

jobs:
publish:
name: publish/python-3.8
runs-on: ubuntu-20.04
name: publish/python-3.12
runs-on: ubuntu-24.04
services:
clickhouse:
image: yandex/clickhouse-server
ports:
- 9000:9000
steps:
- uses: actions/checkout@v2
- name: set up python 3.8
uses: actions/setup-python@v2
- name: set up python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.12"
- name: Python Poetry Action
uses: abatilo/actions-poetry@v2.1.0
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.1.6"
poetry-version: "1.8.3"
- name: Test
run: |
poetry install
Expand All @@ -37,25 +37,25 @@ jobs:
poetry config pypi-token.pypi "$PYPI_TOKEN"
poetry publish
docs:
name: docs/python-3.8
runs-on: ubuntu-20.04
name: docs/python-3.12
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: set up python 3.8
uses: actions/setup-python@v2
- name: set up python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Python Poetry Action
uses: abatilo/actions-poetry@v2.1.0
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.1.6"
poetry-version: "1.8.3"
- name: Build Docs
run: |
poetry install
poetry run sphinx-build -M html docs/source docs/_build
touch docs/_build/html/.nojekyll
- name: Deploy Docs
uses: JamesIves/github-pages-deploy-action@4.1.4
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs/_build/html
2 changes: 1 addition & 1 deletion clickhouse_pool/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .pool import ChPool

__version__ = "0.5.2"
__version__ = "0.6.0"
__all__ = ["ChPool"]
2 changes: 0 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import pkg_resources

import sphinx_rtd_theme

html_theme = "sphinx_rtd_theme"
Expand Down
Loading

0 comments on commit eb4986e

Please sign in to comment.