Skip to content

Commit

Permalink
fix: correct dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
voznik committed Jul 29, 2024
1 parent fb9b66e commit ffa692f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ junit.xml
.DS_Store
Thumbs.db

.nx/cache
.venv
4 changes: 2 additions & 2 deletions poetry.lock

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

2 changes: 2 additions & 0 deletions poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[virtualenvs]
in-project = true
12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "streamlit-textcomplete"
version = "0.1.1"
version = "0.1.2"
description = "Streamlit autocomplete Textcomplete editor for HTMLTextAreaElement"
authors = ["voznik <[email protected]>"]
readme = "README.md"
Expand All @@ -12,15 +12,15 @@ packages = [{ include = "textcomplete" }]

[tool.poetry.dependencies]
python = "^3.10"
streamlit = "^1.36.0"
streamlit = ">=1.34.0"
pandas = "^2.2.2"
emoji = "^2.12.1"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.group.dev.dependencies]
emoji = "^2.12.1"
playwright = "^1.45.0"
pytest-playwright = "^0.5.1"
pytest = "^7.4.4"
Expand Down Expand Up @@ -62,6 +62,8 @@ python_version = "3.10"


[tool.ruff]
# venvPath = "."
# venv = ".venv"
exclude = [
".git",
".vscode",
Expand All @@ -81,8 +83,8 @@ select = ["B", "E", "F", "W", "I"]

[tool.semantic_release]
version_variable = [
"textcomplete/__init__.py:__version__",
"pyproject.toml:version"
"textcomplete/__init__.py:__version__",
"pyproject.toml:version",
]
branch = "main"
upload_to_pypi = true
Expand Down

0 comments on commit ffa692f

Please sign in to comment.