Skip to content

Commit

Permalink
Fix the dev tag of the PEP 440 version (#962)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbalioglu authored Jan 9, 2025
1 parent ec8a1ee commit e3d81c1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0dev0
0.4.0.dev0
2 changes: 1 addition & 1 deletion native/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion native/python/src/fairseq2n/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from __future__ import annotations

__version__ = "0.4.0dev0"
__version__ = "0.4.0.dev0"

import platform
import site
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/fairseq2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit e3d81c1

Please sign in to comment.