Skip to content

Commit 610c874

Browse files
committed
bump version to 0.2.4
1 parent 3511539 commit 610c874

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

pyproject.toml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "torchrunx"
7-
version = "0.2.3"
7+
version = "0.2.4"
88
authors = [
9-
{name = "Apoorv Khandelwal", email = "[email protected]"},
10-
{name = "Peter Curtin", email = "[email protected]"},
9+
{ name = "Apoorv Khandelwal", email = "[email protected]" },
10+
{ name = "Peter Curtin", email = "[email protected]" },
1111
]
1212
description = "Automatically initialize distributed PyTorch environments"
1313
readme = "README.md"
14+
urls = { Repository = "https://github.com/apoorvkh/torchrunx.git", Documentation = "https://torchrunx.readthedocs.io" }
1415
classifiers = [
1516
"License :: OSI Approved :: MIT License",
1617
"Programming Language :: Python",
@@ -42,21 +43,25 @@ src = ["src", "tests"]
4243
[tool.ruff.lint]
4344
select = ["ALL"]
4445
ignore = [
45-
"ANN101", "ANN102", "ANN401", # self / cls / Any annotations
46+
"ANN101",
47+
"ANN102",
48+
"ANN401", # self / cls / Any annotations
4649
"BLE001", # blind exceptions
47-
"TD", # todo syntax
50+
"TD", # todo syntax
4851
"FIX002", # existing todos
49-
"PLR0913", # too many arguments
52+
"PLR0913", # too many arguments
5053
"DTZ005", # datetime timezone
51-
"S301", # bandit: pickle
52-
"S603", "S607", # bandit: subprocess
53-
"COM812", "ISC001", # conflict with formatter
54+
"S301", # bandit: pickle
55+
"S603",
56+
"S607", # bandit: subprocess
57+
"COM812",
58+
"ISC001", # conflict with formatter
5459
]
5560
[tool.ruff.lint.per-file-ignores]
5661
"tests/**/*.py" = [
5762
"D",
58-
"S101", # allow asserts
59-
"T201" # allow prints
63+
"S101", # allow asserts
64+
"T201", # allow prints
6065
]
6166
[tool.ruff.lint.pydocstyle]
6267
convention = "google"

0 commit comments

Comments
 (0)