Skip to content

Commit 3a938a3

Browse files
authored
Change dependency version constraints in pyproject.toml (#158)
Updated dependency version constraints to use '>=' instead of '^'.
1 parent 066eb3d commit 3a938a3

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/pyproject.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ license = "MIT"
77
readme = "README.md"
88

99
[tool.poetry.dependencies]
10-
python = "^3.10"
11-
aiohttp = "^3.8.4"
12-
pyyaml = "^6.0"
13-
fastapi = {version = "^0.115.2", optional = true}
14-
uvicorn = {extras = ["standard"], version = "^0.23.2", optional = true}
15-
rq = {version = "^1.15.1", optional = true}
16-
redis = {version = "^5.0.0", optional = true}
17-
python-dotenv = {version = "^1.0.0", optional = true}
18-
rich = "^13.7.0"
19-
aiolimiter = "^1.1.0"
20-
openapi-spec-validator = "^0.7.1"
10+
python = ">=3.10"
11+
aiohttp = ">=3.8.4"
12+
pyyaml = ">=6.0"
13+
fastapi = {version = ">=0.115.2", optional = true}
14+
uvicorn = {extras = ["standard"], version = ">=0.23.2", optional = true}
15+
rq = {version = ">=1.15.1", optional = true}
16+
redis = {version = ">=5.0.0", optional = true}
17+
python-dotenv = {version = ">=1.0.0", optional = true}
18+
rich = ">=13.7.0"
19+
aiolimiter = ">=1.1.0"
20+
openapi-spec-validator = ">=0.7.1"
2121
setuptools = ">=69.0.3"
22-
tenacity = "^8.2.3"
22+
tenacity = ">=8.2.3"
2323

2424
[tool.poetry.extras]
2525
api = ["fastapi", "uvicorn", "redis", "rq", "python-dotenv"]
@@ -36,7 +36,7 @@ offat-api = "offat.api.__main__:start"
3636

3737

3838
[tool.poetry.group.dev.dependencies]
39-
pytest = "^8.1.1"
39+
pytest = ">=8.1.1"
4040

4141
[tool.pytest.ini_options]
4242
testpaths = [

0 commit comments

Comments
 (0)