Skip to content

Commit

Permalink
exclude python 3.12 from support
Browse files Browse the repository at this point in the history
  • Loading branch information
TShapinsky committed Oct 30, 2023
1 parent 9b041dd commit 6a5d710
Show file tree
Hide file tree
Showing 4 changed files with 1,230 additions and 1,207 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: continuous deployment

on:
on:
pull_request:
branches:
- develop
Expand All @@ -24,6 +24,8 @@ jobs:
ref: ${{github.event.pull_request.head.ref}}
- name: setup-python
uses: actions/setup-python@v3
with:
python-version: '3.11'
# # update repo visualization for docs
# - name: repo-visualizer
# uses: githubocto/[email protected]
Expand All @@ -47,7 +49,7 @@ jobs:
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
publish_dir: ./docs/_build/html

# deploy distribution if a new release and tag are created
deploy-dist:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
uses: actions/checkout@v3
- name: setup-python
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: install-poetry
uses: snok/install-poetry@v1
with:
Expand Down
Loading

0 comments on commit 6a5d710

Please sign in to comment.