Skip to content

Commit

Permalink
updates python version and dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Griffin <[email protected]>
  • Loading branch information
m00sey committed Jul 24, 2024
1 parent 9a3a768 commit 5e058a6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion images/keripy.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE=python:3.10.14-alpine3.20
ARG BASE=python:3.12.2-alpine3.19

FROM ${BASE} as builder

Expand Down
38 changes: 19 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
# uncomment if you test on these interpreters:
# 'Programming Language :: Python :: Implementation :: PyPy',
Expand All @@ -68,32 +68,32 @@
keywords=[
# eg: 'keyword1', 'keyword2', 'keyword3',
],
python_requires='>=3.10.4',
python_requires='>=3.12.2',
install_requires=[
'lmdb>=1.3.0',
'pysodium>=0.7.12',
'blake3>=0.3.1',
'msgpack>=1.0.4',
'cbor2>=5.4.3',
'multidict>=6.0.2',
'lmdb>=1.4.1',
'pysodium>=0.7.17',
'blake3>=0.4.1',
'msgpack>=1.0.8',
'cbor2>=5.6.2',
'multidict>=6.0.5',
'ordered-set>=4.1.0',
'hio>=0.6.14',
'multicommand>=1.0.0',
'jsonschema>=4.17.0',
'falcon>=3.1.0',
'hjson>=3.0.2',
'PyYaml>=6.0',
'apispec>=6.0.0',
'mnemonic>=0.20',
'PrettyTable>=3.5.0',
'http_sfv>=0.9.8',
'cryptography>=39.0.2'
'jsonschema>=4.21.1',
'falcon>=3.1.3',
'hjson>=3.1.0',
'PyYaml>=6.0.1',
'apispec>=6.6.0',
'mnemonic>=0.21',
'PrettyTable>=3.10.0',
'http_sfv>=0.9.9',
'cryptography>=42.0.5'
],
extras_require={
},
tests_require=[
'coverage>=6.5.0',
'pytest>=7.2.0',
'coverage>=7.4.4',
'pytest>=8.1.1',
'pytest-shell>=0.3.2'
],
setup_requires=[
Expand Down

0 comments on commit 5e058a6

Please sign in to comment.