Skip to content

Commit

Permalink
Allow installing latest certifi
Browse files Browse the repository at this point in the history
Rather than pinning to an old version, allow running with
any recent version installed.
  • Loading branch information
rajadain committed Jul 3, 2024
1 parent 0119840 commit e91d8a4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ verify_ssl = true
name = "pypi"

[packages]
certifi = "==2021.5.30"
certifi = ">=2021.*"
funcsigs = "==1.0.2"
llvmlite = "==0.38.*"
pynose = "==1.5.*"
Expand Down
28 changes: 15 additions & 13 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
certifi==2021.5.30
certifi>=2021.*
funcsigs==1.0.2
llvmlite==0.38.*
pynose==1.5.*
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
packages=find_packages(exclude=['test']),
python_requires=">=3.7",
install_requires=[
'certifi==2021.5.30',
'certifi>=2021.*',
'funcsigs==1.0.2',
'llvmlite==0.38.*',
'pynose==1.5.*',
Expand Down

0 comments on commit e91d8a4

Please sign in to comment.