From e3d81c12b6e1cffe4f895b542c9b4344af3c6240 Mon Sep 17 00:00:00 2001 From: Can Balioglu Date: Thu, 9 Jan 2025 08:01:01 -0500 Subject: [PATCH] Fix the dev tag of the PEP 440 version (#962) --- VERSION | 2 +- native/python/setup.py | 2 +- native/python/src/fairseq2n/__init__.py | 2 +- setup.py | 2 +- src/fairseq2/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index f28772671..5acf154b8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.0dev0 +0.4.0.dev0 diff --git a/native/python/setup.py b/native/python/setup.py index 86f9d2a74..277d0d684 100644 --- a/native/python/setup.py +++ b/native/python/setup.py @@ -137,7 +137,7 @@ def get_inputs(self) -> list[str]: "install_cmake": install_cmake, }, name="fairseq2n", - version="0.4.0dev0", + version="0.4.0.dev0", description="FAIR Sequence Modeling Toolkit (Native)", long_description="https://github.com/facebookresearch/fairseq2", long_description_content_type="text/plain", diff --git a/native/python/src/fairseq2n/__init__.py b/native/python/src/fairseq2n/__init__.py index 781cc516e..ae431c84e 100644 --- a/native/python/src/fairseq2n/__init__.py +++ b/native/python/src/fairseq2n/__init__.py @@ -6,7 +6,7 @@ from __future__ import annotations -__version__ = "0.4.0dev0" +__version__ = "0.4.0.dev0" import platform import site diff --git a/setup.py b/setup.py index ca972b580..50ab008a8 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ from setuptools import find_namespace_packages, setup -version = "0.4.0dev0" +version = "0.4.0.dev0" # If this is a local development install, allow nightly fairseq2n builds to # take precedence. diff --git a/src/fairseq2/__init__.py b/src/fairseq2/__init__.py index f39c1953b..2c2804273 100644 --- a/src/fairseq2/__init__.py +++ b/src/fairseq2/__init__.py @@ -6,7 +6,7 @@ from __future__ import annotations -__version__ = "0.4.0dev0" +__version__ = "0.4.0.dev0" import fairseq2n # Report any fairseq2n initialization error eagerly.