Skip to content

Commit 2696eed

Browse files
committed
0.6.13 release with Python 3.11 fix
1 parent 9ecab46 commit 2696eed

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ And a big thanks to all GitHub sponsors who helped with some of my costs before
2121

2222
## What's New
2323

24+
### March 23, 2022
25+
* 0.6.13 release to include Python 3.11 fix. Please try 0.8.x pre-releases (main branch or `pip install --pre timm`) for latest (transitioning to a 0.9 release soon).
26+
2427
### Oct 10, 2022
2528
* More weights in `maxxvit` series, incl first ConvNeXt block based `coatnext` and `maxxvit` experiments:
2629
* `coatnext_nano_rw_224` - 82.0 @ 224 (G) -- (uses ConvNeXt conv block, no BatchNorm)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
'Intended Audience :: Education',
3030
'Intended Audience :: Science/Research',
3131
'License :: OSI Approved :: Apache Software License',
32-
'Programming Language :: Python :: 3.6',
3332
'Programming Language :: Python :: 3.7',
3433
'Programming Language :: Python :: 3.8',
3534
'Programming Language :: Python :: 3.9',
3635
'Programming Language :: Python :: 3.10',
36+
'Programming Language :: Python :: 3.11',
3737
'Topic :: Scientific/Engineering',
3838
'Topic :: Scientific/Engineering :: Artificial Intelligence',
3939
'Topic :: Software Development',
@@ -46,6 +46,6 @@
4646
packages=find_packages(exclude=['convert', 'tests', 'results']),
4747
include_package_data=True,
4848
install_requires=['torch >= 1.7', 'torchvision', 'pyyaml', 'huggingface_hub'],
49-
python_requires='>=3.6',
49+
python_requires='>=3.7',
5050
)
5151

timm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.6.12'
1+
__version__ = '0.6.13'

0 commit comments

Comments
 (0)