Skip to content
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

fixing github checks #1196

Merged
merged 5 commits into from
Sep 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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