Skip to content

Commit 9268e88

Browse files
authored
Merge pull request #11 from SciCatProject/logging-deps
Update dependencies for logging.
2 parents 2f1cbee + 6d49bde commit 9268e88

File tree

8 files changed

+26
-6
lines changed

8 files changed

+26
-6
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ __pycache__/
3636

3737
# User configuration
3838
config.*.json
39+
40+
# Log files
41+
*.log

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ requires-python = ">=3.12"
3030
dependencies = [
3131
"kafka-python",
3232
"ess-streaming-data-types",
33-
"requests"
33+
"requests",
34+
"rich"
3435
]
3536

3637
dynamic = ["version"]

requirements/base.in

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
kafka-python
66
ess-streaming-data-types
77
requests
8+
rich

requirements/base.txt

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SHA1:79d58844bb27d67652662e3a236fd9fa3ce93ffd
1+
# SHA1:fa65536d18d20d383817bc534417d6c283696d35
22
#
33
# This file is autogenerated by pip-compile-multi
44
# To update, run:
@@ -17,9 +17,17 @@ idna==3.6
1717
# via requests
1818
kafka-python==2.0.2
1919
# via -r base.in
20+
markdown-it-py==3.0.0
21+
# via rich
22+
mdurl==0.1.2
23+
# via markdown-it-py
2024
numpy==1.26.4
2125
# via ess-streaming-data-types
26+
pygments==2.17.2
27+
# via rich
2228
requests==2.31.0
2329
# via -r base.in
30+
rich==13.7.1
31+
# via -r base.in
2432
urllib3==2.2.1
2533
# via requests

requirements/dev.txt

-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ pydantic==2.6.4
4646
# via copier
4747
pydantic-core==2.16.3
4848
# via pydantic
49-
pygments==2.17.2
50-
# via copier
5149
pyproject-hooks==1.0.0
5250
# via
5351
# build

requirements/mypy.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ mypy==1.9.0
1010
# via -r mypy.in
1111
mypy-extensions==1.0.0
1212
# via mypy
13-
typing-extensions==4.10.0
13+
typing-extensions==4.11.0
1414
# via mypy

requirements/nightly.in

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
kafka-python
55
ess-streaming-data-types
66
requests
7+
rich

requirements/nightly.txt

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SHA1:eaa2be497c4f6c6972ee27a328c6f7eac1bbf469
1+
# SHA1:d406a5108f5dcf73c54cbfc7b5a3bcdc3e2872fd
22
#
33
# This file is autogenerated by pip-compile-multi
44
# To update, run:
@@ -18,9 +18,17 @@ idna==3.6
1818
# via requests
1919
kafka-python==2.0.2
2020
# via -r nightly.in
21+
markdown-it-py==3.0.0
22+
# via rich
23+
mdurl==0.1.2
24+
# via markdown-it-py
2125
numpy==1.26.4
2226
# via ess-streaming-data-types
27+
pygments==2.17.2
28+
# via rich
2329
requests==2.31.0
2430
# via -r nightly.in
31+
rich==13.7.1
32+
# via -r nightly.in
2533
urllib3==2.2.1
2634
# via requests

0 commit comments

Comments
 (0)