Skip to content

Commit

Permalink
🔩 Pin dependencies to specific versions
Browse files Browse the repository at this point in the history
Updated package dependencies to use version ranges for improved stability.
  • Loading branch information
oliv10 authored and gitbutler-client committed Jul 9, 2024
1 parent 3588577 commit 70b9100
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
version='0.1.0',
packages=find_packages(),
install_requires=[
'fastapi==0.111.0',
'PyJWT==2.8.0',
'redis==5.0.7',
'passlib==1.7.4'
'fastapi~=0.111.0',
'PyJWT~=2.8.0',
'redis~=5.0.7',
'passlib~=1.7.4'
],
extras_require={
"dev": [
"pytest==8.2.2",
"pipreqs==0.5.0",
"fakeredis==2.23.3",
"pytest-cov==5.0.0"
"pytest~=8.2.2",
"pipreqs~=0.5.0",
"fakeredis~=2.23.3",
"pytest-cov~=5.0.0"
],
},
)

0 comments on commit 70b9100

Please sign in to comment.