Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jettify committed Jan 1, 2021
1 parent 2cf09e6 commit 8c53a12
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changes
-------

0.0.1 (YYYY-MM-DD)
0.1.0 (2021-01-01)
------------------
* Initial release.
* Added support for A2GradExp, A2GradInc, A2GradUni, AccSGD, AdaBelief,
AdaBound, AdaMod, Adafactor, Adahessian, AdamP, AggMo, Apollo,
DiffGrad, Lamb, Lookahead, NovoGrad, PID, QHAdam, QHM, RAdam, Ranger,
RangerQH, RangerVA, SGDP, SGDW, SWATS, Shampoo, Yogi.
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
from setuptools import find_packages, setup

install_requires = [
'numpy<=1.18.5;python_version<"3.6"',
'torch<=1.5.1;python_version<"3.6"',
'torch>=1.1.0',
'pytorch_ranger>=0.1.1',
]
Expand Down Expand Up @@ -36,7 +34,6 @@ def _read_version():
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down Expand Up @@ -91,5 +88,5 @@ def _read_version():
zip_safe=True,
include_package_data=True,
project_urls=project_urls,
python_requires='>3.5.0',
python_requires='>=3.6.0',
)
2 changes: 1 addition & 1 deletion torch_optimizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
# utils
'get',
)
__version__ = '0.0.1a17'
__version__ = '0.1.0'


_package_opts = [
Expand Down

0 comments on commit 8c53a12

Please sign in to comment.