Skip to content

Commit a4b594b

Browse files
authored
Merge pull request #58 from kozistr/feature/stable
[Feature] version to 1.0.0
2 parents 4668976 + 8e7ebcb commit a4b594b

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

lint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def get_configuration() -> Namespace:
1414
parser.add_argument(
1515
'-t',
1616
'--threshold',
17-
default=9.95,
17+
default=9.98,
1818
type=float,
1919
)
2020

poetry.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "pytorch_optimizer"
3-
version = "0.6.1"
4-
description = "Bunch of optimizer implementations in PyTorch with clean-code, strict types."
3+
version = "1.0.0"
4+
description = "Bunch of optimizer implementations in PyTorch with clean-code, strict types. Also, including useful optimization ideas."
55
license = "Apache-2.0"
66
authors = ["kozistr <[email protected]>"]
77
maintainers = ["kozistr <[email protected]>"]
@@ -12,7 +12,7 @@ documentation = "https://pytorch-optimizers.readthedocs.io/en/latest"
1212
keywords = ["pytorch", "deep-learning", "optimizer"]
1313
classifiers = [
1414
"License :: OSI Approved :: Apache Software License",
15-
"Development Status :: 3 - Alpha",
15+
"Development Status :: 5 - Production/Stable",
1616
"Intended Audience :: Education",
1717
"Intended Audience :: Developers",
1818
"Intended Audience :: Science/Research",
@@ -32,15 +32,15 @@ classifiers = [
3232

3333
[tool.poetry.dependencies]
3434
python = "^3.7"
35-
numpy = "*"
36-
torch = "1.11.0"
35+
numpy = "^1.21.1"
36+
torch = "^1.11.0"
3737

3838
[tool.poetry.dev-dependencies]
3939
isort = "==5.10.1"
4040
black = "==21.12b0"
4141
click = "==8.0.4"
4242
pylint = "==2.11.1"
43-
pytest = "==7.0.1"
43+
pytest = "==7.1.2"
4444
pytest-cov = "==3.0.0"
4545

4646
[build-system]

requirements-dev.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
astroid==2.8.6; python_version >= "3.6" and python_version < "4.0"
2-
atomicwrites==1.4.0; python_version >= "3.6" and python_full_version < "3.0.0" and sys_platform == "win32" or sys_platform == "win32" and python_version >= "3.6" and python_full_version >= "3.4.0"
3-
attrs==21.4.0; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
2+
atomicwrites==1.4.0; python_version >= "3.7" and python_full_version < "3.0.0" and sys_platform == "win32" or sys_platform == "win32" and python_version >= "3.7" and python_full_version >= "3.4.0"
3+
attrs==21.4.0; python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.7"
44
black==21.12b0; python_full_version >= "3.6.2"
55
click==8.0.4; python_version >= "3.6"
6-
colorama==0.4.4; platform_system == "Windows" and python_version >= "3.6" and python_full_version >= "3.6.2" and (python_version >= "3.6" and python_full_version < "3.0.0" and python_version < "4.0" and sys_platform == "win32" or python_version >= "3.6" and python_version < "4.0" and sys_platform == "win32" and python_full_version >= "3.5.0") and (python_version >= "3.6" and python_full_version < "3.0.0" and sys_platform == "win32" or sys_platform == "win32" and python_version >= "3.6" and python_full_version >= "3.5.0")
6+
colorama==0.4.4; platform_system == "Windows" and python_version >= "3.6" and python_full_version >= "3.6.2" and (python_version >= "3.6" and python_full_version < "3.0.0" and python_version < "4.0" and sys_platform == "win32" or python_version >= "3.6" and python_version < "4.0" and sys_platform == "win32" and python_full_version >= "3.5.0") and (python_version >= "3.7" and python_full_version < "3.0.0" and sys_platform == "win32" or sys_platform == "win32" and python_version >= "3.7" and python_full_version >= "3.5.0")
77
coverage==6.3.2; python_version >= "3.7"
88
importlib-metadata==4.11.3; python_version < "3.8" and python_version >= "3.7" and python_full_version >= "3.6.2"
9-
iniconfig==1.1.1; python_version >= "3.6"
9+
iniconfig==1.1.1; python_version >= "3.7"
1010
isort==5.10.1; python_full_version >= "3.6.1" and python_version < "4.0"
1111
lazy-object-proxy==1.7.1; python_version >= "3.6" and python_version < "4.0"
1212
mccabe==0.6.1; python_version >= "3.6" and python_version < "4.0"
1313
mypy-extensions==0.4.3; python_full_version >= "3.6.2"
1414
numpy==1.21.1; python_version >= "3.7"
15-
packaging==21.3; python_version >= "3.6"
15+
packaging==21.3; python_version >= "3.7"
1616
pathspec==0.9.0; python_full_version >= "3.6.2"
1717
platformdirs==2.5.2; python_version >= "3.7" and python_full_version >= "3.6.2" and python_version < "4.0"
18-
pluggy==1.0.0; python_version >= "3.6"
19-
py==1.11.0; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
18+
pluggy==1.0.0; python_version >= "3.7"
19+
py==1.11.0; python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.7"
2020
pylint==2.11.1; python_version >= "3.6" and python_version < "4.0"
21-
pyparsing==3.0.8; python_full_version >= "3.6.8" and python_version >= "3.6"
21+
pyparsing==3.0.8; python_full_version >= "3.6.8" and python_version >= "3.7"
2222
pytest-cov==3.0.0; python_version >= "3.6"
23-
pytest==7.0.1; python_version >= "3.6"
23+
pytest==7.1.2; python_version >= "3.7"
2424
toml==0.10.2; python_version >= "3.6" and python_full_version < "3.0.0" and python_version < "4.0" or python_version >= "3.6" and python_version < "4.0" and python_full_version >= "3.3.0"
2525
tomli==1.2.3; python_version >= "3.7" and python_full_version >= "3.6.2"
2626
torch==1.11.0; python_full_version >= "3.7.0"

0 commit comments

Comments
 (0)