Skip to content

Commit

Permalink
Found potential issue
Browse files Browse the repository at this point in the history
  • Loading branch information
micahcarroll committed Apr 27, 2024
1 parent 1cab702 commit 2fb3047
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Python setup #removed conda setup
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.7
- name: Installing dependencies
run: pip install -e .[harl]
- name: Test human_aware_rl with unittest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pythonlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.7'
architecture: 'x64'
- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pythontests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.7'
architecture: 'x64'
- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
install_requires=[
"dill",
"numpy==1.18",
"numpy",
"scipy",
"tqdm",
"gym",
Expand Down

0 comments on commit 2fb3047

Please sign in to comment.