Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
with:
submodules: true
- name: setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v6.2.0
with:
python-version: '3.9'
python-version: '3.11'
- name: install Poetry
uses: snok/install-poetry@v1.4.1
- name: set poetry config path
run: poetry config virtualenvs.path ~/.virtualenvs
- name: install dependencies
run: poetry install
run: poetry install --no-root
- name: build with mkdocs
run: poetry run mkdocs gh-deploy --force
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.9
3.11
86 changes: 33 additions & 53 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tool.poetry]
name = "openstates-documentation"
version = "2019.12"
version = "2026.01"
description = ""
authors = ["James Turk <dev@jamesturk.net>"]

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.11"
mkdocs-material = "^8.5.11"

[tool.poetry.dev-dependencies]
Expand Down
Loading