Skip to content

Commit a40c6ce

Browse files
authored
Update python version in setup.py and fixed pypi download badge (#1969)
1 parent e85adec commit a40c6ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<img alt="PyPi Package Version" src="https://img.shields.io/pypi/v/mosaicml">
3030
</a>
3131
<a href="https://pepy.tech/project/mosaicml/">
32-
<img alt="PyPi Downloads" src="https://static.pepy.tech/personalized-badge/mosaicml?period=month&units=international_system&left_color=grey&right_color=blue&left_text=Downloads">
32+
<img alt="PyPi Downloads" src="https://static.pepy.tech/personalized-badge/mosaicml?period=month&units=international_system&left_color=grey&right_color=blue&left_text=Downloads/month">
3333
</a>
3434
<a href="https://docs.mosaicml.com/en/stable/">
3535
<img alt="Documentation" src="https://readthedocs.org/projects/composer/badge/?version=stable">

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,9 @@ def package_files(prefix: str, directory: str, extension: str):
228228
packages=setuptools.find_packages(exclude=['docker*', 'examples*', 'scripts*', 'tests*']),
229229
classifiers=[
230230
'Programming Language :: Python :: 3',
231-
'Programming Language :: Python :: 3.7',
232231
'Programming Language :: Python :: 3.8',
233232
'Programming Language :: Python :: 3.9',
233+
'Programming Language :: Python :: 3.10',
234234
],
235235
install_requires=install_requires,
236236
entry_points={
@@ -241,7 +241,7 @@ def package_files(prefix: str, directory: str, extension: str):
241241
},
242242
extras_require=extra_deps,
243243
dependency_links=['https://developer.download.nvidia.com/compute/redist'],
244-
python_requires='>=3.7',
244+
python_requires='>=3.8',
245245
ext_package='composer',
246246
cmdclass={'develop': develop})
247247

0 commit comments

Comments
 (0)