Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
verl
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ZhangXiaoyun
verl
Commits
e3cc0ebd
Unverified
Commit
e3cc0ebd
authored
Jan 28, 2025
by
HL
Committed by
GitHub
Jan 28, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: fix missing version file dependency when installing without -e (#156)
parent
33e374aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
3 deletions
+1
-3
verl/single_controller/__init__.py
+1
-1
verl/single_controller/version/version
+0
-2
No files found.
verl/single_controller/__init__.py
View file @
e3cc0ebd
...
...
@@ -16,5 +16,5 @@ import os
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
()
verl/single_controller/version/version
deleted
100644 → 0
View file @
33e374aa
0.0.2
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment