Skip to content

Commit f24b3fe

Browse files
authored
Merge pull request #68 from kozistr/build/deps
[Build] update dependencies
2 parents 959a944 + db834c8 commit f24b3fe

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: init format test check requirements
22

33
init:
4-
python -m pip install -U poetry
4+
python -m pip install -q -U poetry
55
python -m poetry install
66

77
format:

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pytorch_optimizer"
3-
version = "1.1.3"
3+
version = "1.1.4"
44
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]>"]
@@ -33,15 +33,15 @@ classifiers = [
3333
[tool.poetry.dependencies]
3434
python = "^3.8"
3535
numpy = "^1.22.4"
36-
torch = "^1.12.1"
36+
torch = "^1.10"
3737

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

4646
[build-system]
4747
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)