Skip to content

Commit

Permalink
fix: Fix versions and lock poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
nickderobertis committed Jan 28, 2023
1 parent 0892868 commit aedce03
Show file tree
Hide file tree
Showing 7 changed files with 2,787 additions and 181 deletions.
973 changes: 816 additions & 157 deletions .venvs/docs/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .venvs/docs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = "1.0.0"
authors = ["Nick DeRobertis <derobertis.nick@gmail.com>"]

[tool.poetry.dependencies]
python = ">=3.8"
python = ">=3.8,<4.0"
flexlate-dev = {path = "../..", develop = true}
sphinx = "*"
sphinx-autobuild = "*"
Expand Down
1,006 changes: 995 additions & 11 deletions .venvs/lint/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .venvs/lint/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = "1.0.0"
authors = ["Nick DeRobertis <derobertis.nick@gmail.com>"]

[tool.poetry.dependencies]
python = ">=3.8"
python = ">=3.8,<4.0"
flexlate-dev = {path = "../..", develop = true}
flake8 = "*"
mypy = "*"
2 changes: 1 addition & 1 deletion flexlate_dev/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
Development tools for template authors using Flexlate
"""
__version__ = "1.0.0"
__version__ = "0.20.0"
979 changes: 971 additions & 8 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "flexlate-dev"
version = "1.0.0"
version = "0.20.0"
description = "Development tools for template authors using Flexlate"
authors = ["Nick DeRobertis <derobertis.nick@gmail.com>"]
readme = "README.md"
Expand Down Expand Up @@ -31,7 +31,7 @@ documentation = "https://nickderobertis.github.io/flexlate-dev"
dfxt = "flexlate_dev.cli:cli"

[tool.poetry.dependencies]
python = ">=3.8"
python = ">=3.8,<4.0"
flexlate = ">=0.14.7"
py-app-conf = ">=1.1.0"
watchdog = "*"
Expand Down

0 comments on commit aedce03

Please sign in to comment.