Skip to content

Commit 2fb3047

Browse files
committed
Found potential issue
1 parent 1cab702 commit 2fb3047

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Python setup #removed conda setup
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: 3.9
19+
python-version: 3.7
2020
- name: Installing dependencies
2121
run: pip install -e .[harl]
2222
- name: Test human_aware_rl with unittest

.github/workflows/pythonlint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v3
11-
- name: Set up Python 3.9
11+
- name: Set up Python 3.7
1212
uses: actions/setup-python@v4
1313
with:
14-
python-version: '3.9'
14+
python-version: '3.7'
1515
architecture: 'x64'
1616
- name: Install dependencies
1717
run: |

.github/workflows/pythontests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v3
24-
- name: Set up Python 3.9
24+
- name: Set up Python 3.7
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: '3.9'
27+
python-version: '3.7'
2828
architecture: 'x64'
2929
- name: Install dependencies
3030
run: |

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
install_requires=[
4141
"dill",
42-
"numpy==1.18",
42+
"numpy",
4343
"scipy",
4444
"tqdm",
4545
"gym",

0 commit comments

Comments
 (0)