Skip to content

Commit

Permalink
fixing github checks (Learning-and-Intelligent-Systems#1196) (#23)
Browse files Browse the repository at this point in the history
Co-authored-by: Tom Silver <tomsilver@users.noreply.github.com>
  • Loading branch information
NishanthJKumar and tomsilver committed Sep 7, 2022
1 parent 0698ccc commit 287e9d1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions run_autoformat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
yapf -i -r --style .style.yapf --exclude '**/third_party' predicators
yapf -i -r --style .style.yapf scripts
yapf -i -r --style .style.yapf tests
yapf -i -r --style .style.yapf setup.py
docformatter -i -r . --exclude venv predicators/third_party
isort .
2 changes: 1 addition & 1 deletion scripts/plotting/create_bar_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
create_dataframes, get_df_for_entry, pd_create_equal_selector

plt.style.use('ggplot')
pd.options.mode.chained_assignment = None # default='warn'
pd.set_option('chained_assignment', None)
# plt.rcParams["font.family"] = "CMU Serif"

############################ Change below here ################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from scripts.analyze_results_directory import create_raw_dataframe, \
get_df_for_entry

pd.options.mode.chained_assignment = None # default='warn'
pd.set_option('chained_assignment', None)

############################ Change below here ################################

Expand Down
2 changes: 1 addition & 1 deletion scripts/plotting/create_latex_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from scripts.analyze_results_directory import combine_selectors, \
create_dataframes, get_df_for_entry, pd_create_equal_selector

pd.options.mode.chained_assignment = None # default='warn'
pd.set_option('chained_assignment', None)

############################ Change below here ################################

Expand Down
2 changes: 1 addition & 1 deletion scripts/plotting/create_num_demos_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from scripts.analyze_results_directory import create_dataframes, \
get_df_for_entry

pd.options.mode.chained_assignment = None # default='warn'
pd.set_option('chained_assignment', None)
# plt.rcParams["font.family"] = "CMU Serif"

############################ Change below here ################################
Expand Down
2 changes: 1 addition & 1 deletion scripts/plotting/create_option_learning_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from scripts.analyze_results_directory import create_dataframes, \
get_df_for_entry

pd.options.mode.chained_assignment = None # default='warn'
pd.set_option('chained_assignment', None)
# plt.rcParams["font.family"] = "CMU Serif"

############################ Change below here ################################
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"numpy>=1.22.3", "pytest", "gym==0.21.0", "matplotlib", "imageio",
"imageio-ffmpeg", "pandas", "torch", "scipy", "tabulate", "dill",
"pyperplan", "pathos", "requests", "slack_bolt", "pybullet>=3.2.0",
"sklearn", "graphlib-backport", "openai", "pyyaml", "types-PyYAML"
"sklearn", "graphlib-backport", "openai", "pyyaml", "pylint==2.14.5",
"types-PyYAML"
],
include_package_data=True,
extras_require={
Expand Down

0 comments on commit 287e9d1

Please sign in to comment.