-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move pytest-benchmark to dev dependencies (#109)
- Loading branch information
1 parent
95756af
commit 30ae386
Showing
3 changed files
with
13 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.13.0" | ||
__version__ = "0.13.1" | ||
|
||
|
||
from .proxy import ( | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "observ" | ||
version = "0.13.0" | ||
version = "0.13.1" | ||
description = "Reactive state management for Python" | ||
authors = ["Korijn van Golen <[email protected]>", "Berend Klein Haneveld <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -10,7 +10,6 @@ readme = "README.md" | |
[tool.poetry.dependencies] | ||
python = ">=3.9" | ||
patchdiff = "~0.3.4" | ||
pytest-benchmark = "^4.0.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "*" | ||
|
@@ -21,6 +20,7 @@ flake8-print = "*" | |
pre-commit = "*" | ||
PySide6 = { version = ">=6.6", python = "<3.13"} | ||
pytest = "*" | ||
pytest-benchmark = "*" | ||
pytest-cov = "*" | ||
pytest-qt = "*" | ||
pytest-timeout = "*" | ||
|