Skip to content

Commit

Permalink
Merge pull request #18 from CarperAI/release
Browse files Browse the repository at this point in the history
Puffer 0.4
  • Loading branch information
jsuarez5341 committed Sep 6, 2023
2 parents 894baf7 + 5b983bd commit 8d223cc
Show file tree
Hide file tree
Showing 96 changed files with 3,825 additions and 6,033 deletions.
1 change: 0 additions & 1 deletion .github/workflows/pylint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
pip install pytest==7.2.2
- name: Running unit tests
run: pytest
# NOTE: will put these back eventually
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ replay*/
checkpoints
wandb
maps
pool

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
15 changes: 10 additions & 5 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[MESSAGES CONTROL]

disable=W0511, # TODO/FIXME
W0105, # string is used as a statement
disable=C0103, # invalid name
C0114, # missing module docstring
C0115, # missing class docstring
C0116, # missing function docstring
W0221, # arguments differ from overridden method
C0301, # line too long
C0411, # wrong import order
C0415, # import outside toplevel
E0611, # no name in module
R0401, # cyclic import
R0901, # too many ancestors
R0902, # too many instance attributes
R0903, # too few public methods
Expand All @@ -17,7 +18,10 @@ disable=W0511, # TODO/FIXME
R0914, # too many local variables
R0914, # too many local variables
R0915, # too many statements
R0401, # cyclic import
W0105, # string is used as a statement
W1203, # use logging instead of print
W0221, # arguments differ from overridden method
W0511, # TODO/FIXME

[INDENTATION]
indent-string=' '
Expand All @@ -26,6 +30,7 @@ indent-string=' '
good-names-rgxs=^[_a-zA-Z][_a-z0-9]?$ # whitelist short variables
known-third-party=ordered_set,numpy,gym,pettingzoo,vec_noise,imageio,scipy,tqdm
load-plugins=pylint.extensions.bad_builtin
ignored-modules=torch

[BASIC]
bad-functions=print # checks if these functions are used
bad-functions=print # checks if these functions are used
Loading

0 comments on commit 8d223cc

Please sign in to comment.