Skip to content

Commit f239ddd

Browse files
committed
dependency bump
1 parent 2f0b490 commit f239ddd

File tree

2 files changed

+39
-35
lines changed

2 files changed

+39
-35
lines changed

requirements.txt

+22-17
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
# =============================================================================
2-
# DEPRECATION WARNING:
3-
#
4-
# The file `requirements.txt` does not influence the package dependencies and
5-
# will not be automatically created in the next version of PyScaffold (v4.x).
6-
#
7-
# Please have look at the docs for better alternatives
8-
# (`Dependency Management` section).
9-
# =============================================================================
10-
#
11-
# Add your pinned requirements so that they can be easily installed with:
12-
# pip install -r requirements.txt
13-
# Remember to also add them in setup.cfg but unpinned.
14-
# Example:
15-
# numpy==1.13.3
16-
# scipy==1.0
17-
#
1+
alembic==1.11.1
2+
asyncpg==0.28.0
3+
Authlib==1.2.1
4+
databases[postgresql]==0.7.0
5+
fastapi==0.100.0
6+
fastapi-pagination==0.12.6
7+
fastapi-users[sqlalchemy]==12.1.0
8+
numpy==1.25.1
9+
orjson==3.9.2
10+
passlib[argon2]==1.7.4
11+
PyJWT==2.7.0
12+
PySide6-Essentials==6.5.1.1
13+
python-dateutil==2.8.2
14+
opencv-python==4.8.0.74
15+
python3-commons==0.0.25
16+
SQLAlchemy==1.4.46
17+
uvicorn[standard]==0.23.1
18+
uvloop==0.17.0
19+
rawpy==0.18.1
20+
Pillow==10.0.0
21+
pydantic==1.10.9
22+
tzdata==2023.3

setup.cfg

+17-18
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[metadata]
66
name = dataset-image-annotator
7-
version = 0.0.24
7+
version = 0.0.25
88
description = Image annotation tool
99
author = Oleg Korsak
1010
author_email = [email protected]
@@ -32,10 +32,10 @@ package_dir =
3232
setup_requires = pyscaffold>=3.2a0,<3.3a0
3333
# Add here dependencies of your project (semicolon/line-separated), e.g.
3434
install_requires =
35-
rawpy==0.18.0
36-
Pillow==9.4.0
37-
pydantic==1.10.4
38-
tzdata==2022.7
35+
rawpy==0.18.1
36+
Pillow==10.0.0
37+
pydantic==1.10.9
38+
tzdata==2023.3
3939
# The usage of test_requires is discouraged, see `Dependency Management` docs
4040
# tests_require = pytest; pytest-cov
4141
# Require a specific Python version, e.g. Python 2.7 or >= 3.4
@@ -54,23 +54,22 @@ exclude =
5454
desktop =
5555
PySide6-Essentials==6.4.2
5656
web =
57-
alembic==1.9.3
58-
asyncpg==0.27.0
59-
Authlib==1.2.0
60-
passlib==1.7.4
57+
alembic==1.11.1
58+
asyncpg==0.28.0
59+
Authlib==1.2.1
6160
databases[postgresql]==0.7.0
62-
fastapi==0.90.0
63-
fastapi-pagination==0.11.3
64-
fastapi-users[sqlalchemy]==10.3.0
65-
numpy==1.24.1
66-
orjson==3.8.5
61+
fastapi==0.100.0
62+
fastapi-pagination==0.12.6
63+
fastapi-users[sqlalchemy]==12.1.0
64+
numpy==1.25.1
65+
orjson==3.9.2
6766
passlib[argon2]==1.7.4
68-
PyJWT==2.6.0
67+
PyJWT==2.7.0
6968
python-dateutil==2.8.2
70-
python-opencv==4.7.0.68
71-
python3-commons>=0.0.1
69+
opencv-python==4.8.0.74
70+
python3-commons==0.0.25
7271
SQLAlchemy==1.4.46
73-
uvicorn[standard]==0.20.0
72+
uvicorn[standard]==0.23.1
7473
uvloop==0.17.0
7574
testing =
7675
pytest

0 commit comments

Comments
 (0)