Skip to content

Commit

Permalink
Add versioneer so nvflare.__version__ has meaningful value (#215)
Browse files Browse the repository at this point in the history
* Add versioneer so nvflare.__version__ has meaningful value

* Fix coding style and license for versioneer
  • Loading branch information
IsaacYangSLA authored Feb 16, 2022
1 parent 7ab7b1e commit fa20e5e
Show file tree
Hide file tree
Showing 8 changed files with 2,805 additions and 20 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nvflare/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include versioneer.py
include nvflare/_version.py
4 changes: 3 additions & 1 deletion nvflare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "2.0.7"
from . import _version

__version__ = _version.get_versions()["version"]
Loading

0 comments on commit fa20e5e

Please sign in to comment.