Skip to content

Commit

Permalink
fix: fix missing version file dependency when installing without -e
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-haibin-lin committed Jan 29, 2025
1 parent ab525bc commit 486e6ba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion verl/single_controller/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@

version_folder = os.path.dirname(os.path.join(os.path.abspath(__file__)))

with open(os.path.join(version_folder, 'version/version')) as f:
with open(os.path.join(os.path.join(version_folder, os.pardir), 'version/version')) as f:
__version__ = f.read().strip()
1 change: 0 additions & 1 deletion verl/single_controller/version/version

This file was deleted.

0 comments on commit 486e6ba

Please sign in to comment.