Spaces:
Runtime error
Runtime error
freemt
commited on
Commit
·
b3dce34
1
Parent(s):
82f688f
Update requirements.txt
Browse files- poetry.lock +13 -1
- pyproject.toml +1 -0
- requirements.txt +1 -0
poetry.lock
CHANGED
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
[[package]]
|
2 |
name = "astroid"
|
3 |
version = "2.11.7"
|
@@ -536,9 +544,13 @@ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
|
536 |
[metadata]
|
537 |
lock-version = "1.1"
|
538 |
python-versions = "^3.8.3"
|
539 |
-
content-hash = "
|
540 |
|
541 |
[metadata.files]
|
|
|
|
|
|
|
|
|
542 |
astroid = [
|
543 |
{file = "astroid-2.11.7-py3-none-any.whl", hash = "sha256:86b0a340a512c65abf4368b80252754cda17c02cdbbd3f587dddf98112233e7b"},
|
544 |
{file = "astroid-2.11.7.tar.gz", hash = "sha256:bb24615c77f4837c707669d16907331374ae8a964650a66999da3f5ca68dc946"},
|
|
|
1 |
+
[[package]]
|
2 |
+
name = "about-time"
|
3 |
+
version = "4.1.0"
|
4 |
+
description = "Easily measure timing and throughput of code blocks, with beautiful human friendly representations."
|
5 |
+
category = "main"
|
6 |
+
optional = false
|
7 |
+
python-versions = ">=3.7, <4"
|
8 |
+
|
9 |
[[package]]
|
10 |
name = "astroid"
|
11 |
version = "2.11.7"
|
|
|
544 |
[metadata]
|
545 |
lock-version = "1.1"
|
546 |
python-versions = "^3.8.3"
|
547 |
+
content-hash = "4bce03f707545c43d26c7d65af46dc000e185109352eb09f87059bf6ca68fa7b"
|
548 |
|
549 |
[metadata.files]
|
550 |
+
about-time = [
|
551 |
+
{file = "about-time-4.1.0.tar.gz", hash = "sha256:963b1f3739b0c9732eb205031762b76f1291d89b5d0c8220a8d5b154e32ce650"},
|
552 |
+
{file = "about_time-4.1.0-py3-none-any.whl", hash = "sha256:fdf24423c4322ee32fa1338ff4b11f704b649427110290f94bfe4e16ad246f18"},
|
553 |
+
]
|
554 |
astroid = [
|
555 |
{file = "astroid-2.11.7-py3-none-any.whl", hash = "sha256:86b0a340a512c65abf4368b80252754cda17c02cdbbd3f587dddf98112233e7b"},
|
556 |
{file = "astroid-2.11.7.tar.gz", hash = "sha256:bb24615c77f4837c707669d16907331374ae8a964650a66999da3f5ca68dc946"},
|
pyproject.toml
CHANGED
@@ -15,6 +15,7 @@ typer = "^0.4.1"
|
|
15 |
icecream = "^2.1.1"
|
16 |
install = "^1.3.5"
|
17 |
more-itertools = "^8.14.0"
|
|
|
18 |
|
19 |
[tool.poe.executor]
|
20 |
type = "poetry"
|
|
|
15 |
icecream = "^2.1.1"
|
16 |
install = "^1.3.5"
|
17 |
more-itertools = "^8.14.0"
|
18 |
+
about-time = "^4.1.0"
|
19 |
|
20 |
[tool.poe.executor]
|
21 |
type = "poetry"
|
requirements.txt
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
asttokens==2.0.7
|
2 |
click==8.1.3; python_version >= "3.7"
|
3 |
colorama==0.4.5; python_full_version >= "3.8.3" and sys_platform == "win32" and python_full_version < "4.0.0" and (python_version >= "3.7" and python_full_version < "3.0.0" and platform_system == "Windows" or platform_system == "Windows" and python_version >= "3.7" and python_full_version >= "3.5.0")
|
|
|
1 |
+
about-time==4.1.0; python_version >= "3.7" and python_version < "4"
|
2 |
asttokens==2.0.7
|
3 |
click==8.1.3; python_version >= "3.7"
|
4 |
colorama==0.4.5; python_full_version >= "3.8.3" and sys_platform == "win32" and python_full_version < "4.0.0" and (python_version >= "3.7" and python_full_version < "3.0.0" and platform_system == "Windows" or platform_system == "Windows" and python_version >= "3.7" and python_full_version >= "3.5.0")
|