Skip to content

Commit

Permalink
revert back to >= for deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Jylpah committed Dec 25, 2023
1 parent 373ad59 commit 5a055b6
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,30 @@ classifiers = [
"Topic :: Games/Entertainment",
]
dependencies = [
"aiofiles~=23.1",
"aiohttp~=3.9.1",
"aiosqlite~=0.19",
"isort~=5.12",
"aiofiles>=23.1",
"aiohttp>=3.9.1",
"aiosqlite>=0.19",
"isort>=5.12",
"pyarrow>=14.0.1",
"pydantic~=2.4",
"pymongo~=4.6",
"pydantic>=2.4",
"pymongo>=4.6",
"pyutils @ git+https://github.com/Jylpah/[email protected]",
"pydantic-exportables @ git+https://github.com/Jylpah/pydantic-exportables.git",
]

[project.optional-dependencies]
dev = [
"build~=0.10",
"mypy~=1.7",
"pip-chill~=1.0",
"pip-audit~=2.6",
"pytest~=7.4",
"pytest-asyncio~=0.23",
"pytest-datafiles~=3.0",
"pytest-cov~=4.1",
"pytest-timeout~=2.2",
"build>=0.10",
"mypy>=1.7",
"pip-chill>=1.0",
"pip-audit>=2.6",
"pytest>=7.4",
"pytest-asyncio>=0.23",
"pytest-datafiles>=3.0",
"pytest-cov>=4.1",
"pytest-timeout>=2.2",
"ruff>=0.1.9",
"types-aiofiles~=23.1",
"types-aiofiles>=23.1",
]

[project.urls]
Expand Down

0 comments on commit 5a055b6

Please sign in to comment.