Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitlab/stages/01.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ test:pre_build_image:
- IMAGE: CI_MCORE_DEV_IMAGE
FILE: Dockerfile.ci.dev
IMAGE_TYPE: dev
BASE_IMAGE: nvcr.io/nvidia/pytorch:25.11-py3
BASE_IMAGE: nvcr.io/nvidia/pytorch:26.02-py3
PLATFORM: amd64
- IMAGE: CI_MCORE_DEV_IMAGE
FILE: Dockerfile.ci.dev
IMAGE_TYPE: dev
BASE_IMAGE: nvcr.io/nvidia/pytorch:25.11-py3
BASE_IMAGE: nvcr.io/nvidia/pytorch:26.02-py3
PLATFORM: arm64
- IMAGE: UTILITY_IMAGE
FILE: Dockerfile.linting
Expand Down
2 changes: 1 addition & 1 deletion docker/.ngc_version.dev
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nvcr.io/nvidia/pytorch:25.11-py3
nvcr.io/nvidia/pytorch:26.02-py3
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ build-backend = "setuptools.build_meta"
include-package-data = true

[tool.setuptools.packages.find]
include = ["megatron.core", "megatron.core.*", "megatron.training", "megatron.training.*"]
include = [
"megatron.core",
"megatron.core.*",
"megatron.training",
"megatron.training.*",
]

[tool.setuptools.dynamic]
version = { attr = "megatron.core.package_info.__version__" }
Expand Down Expand Up @@ -136,6 +141,7 @@ test = [
"wrapt",
"pytest==8.3.5",
"pytest-mock",
"mock",
"pytest-cov",
"pytest-random-order",
"pytest-asyncio",
Expand Down Expand Up @@ -245,6 +251,7 @@ omit = [
"/opt/megatron-lm/tests/*",
"/opt/megatron-lm/tools/*",
"/usr/local/lib/python3.12/dist-packages/*",
"/opt/megatron-lm/_remote_module_non_scriptable",
]
parallel = true
sigterm = false
Expand Down
Loading
Loading