-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix render_mode when loading VecNormalize #1671
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,12 +120,10 @@ | |
# Type check | ||
"pytype", | ||
"mypy", | ||
# Lint code (flake8 replacement) | ||
"ruff", | ||
# Sort imports | ||
"isort>=5.0", | ||
# Lint code and sort imports (flake8 and isort replacement) | ||
"ruff>=0.0.288", | ||
# Reformat | ||
"black", | ||
"black>=23.9.1,<24", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Btw There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes it is, I do find There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh I did not know this! Is this also the case in the python world? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so far, I think (and hope) it is fine (I'm mostly sticking to pip/mamba so I cannot say for the rest) |
||
], | ||
"docs": [ | ||
"sphinx>=5.3,<7.0", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.2.0a1 | ||
2.2.0a2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking forward to check out ruff :-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ruff is already used as a replacement for flake8 and it's pretty fast =)