Skip to content

Commit 8c53a12

Browse files
committed
Bump version
1 parent 2cf09e6 commit 8c53a12

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGES.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changes
22
-------
33

4-
0.0.1 (YYYY-MM-DD)
4+
0.1.0 (2021-01-01)
55
------------------
66
* Initial release.
7+
* Added support for A2GradExp, A2GradInc, A2GradUni, AccSGD, AdaBelief,
8+
AdaBound, AdaMod, Adafactor, Adahessian, AdamP, AggMo, Apollo,
9+
DiffGrad, Lamb, Lookahead, NovoGrad, PID, QHAdam, QHM, RAdam, Ranger,
10+
RangerQH, RangerVA, SGDP, SGDW, SWATS, Shampoo, Yogi.

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
from setuptools import find_packages, setup
55

66
install_requires = [
7-
'numpy<=1.18.5;python_version<"3.6"',
8-
'torch<=1.5.1;python_version<"3.6"',
97
'torch>=1.1.0',
108
'pytorch_ranger>=0.1.1',
119
]
@@ -36,7 +34,6 @@ def _read_version():
3634
'Intended Audience :: Developers',
3735
'Intended Audience :: Science/Research',
3836
'Programming Language :: Python :: 3',
39-
'Programming Language :: Python :: 3.5',
4037
'Programming Language :: Python :: 3.6',
4138
'Programming Language :: Python :: 3.7',
4239
'Programming Language :: Python :: 3.8',
@@ -91,5 +88,5 @@ def _read_version():
9188
zip_safe=True,
9289
include_package_data=True,
9390
project_urls=project_urls,
94-
python_requires='>3.5.0',
91+
python_requires='>=3.6.0',
9592
)

torch_optimizer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
# utils
7676
'get',
7777
)
78-
__version__ = '0.0.1a17'
78+
__version__ = '0.1.0'
7979

8080

8181
_package_opts = [

0 commit comments

Comments
 (0)