Skip to content

Commit

Permalink
Support for python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin C Presley committed Dec 29, 2021
1 parent 0a55dab commit e722ac9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ as variations of NDN repositories (repo, nr-archway, hydra, etc), NDN sync proto
an API is provided.

The Named Data Networking Storage Library is implemented using and simply adds to python-ndn_, nicknamed
``ndn-python-storage`` obtained by ndn-storage_.
``ndn-python-storage`` obtained by the pip library ndn-storage_.

The implementation is on our github-repo_.

Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
plyvel>=1.3.0
plyvel>=1.4.0
pymongo>=4.0.1
python-ndn>=0.3
2 changes: 1 addition & 1 deletion docs/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# @Pip-Library: https://pypi.org/project/ndn-storage

# Version of Storage according to pip
__version__ = "0.2.1"
__version__ = "0.2.2"
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,12 @@ def _parse_requirements(filename: str) -> List[str]:
'Topic :: System :: Networking',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
keywords='NDN STORAGE DISK MEMORY CACHE',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=_parse_requirements('docs/requirements.txt'),
python_requires=">=3.8,<3.10.*",
python_requires=">=3.8",
zip_safe=False)

0 comments on commit e722ac9

Please # to comment.