Skip to content

Commit

Permalink
Merge pull request #20 from garethjns/update_rlk
Browse files Browse the repository at this point in the history
Update RLK version
  • Loading branch information
garethjns authored Aug 2, 2020
2 parents 69348c5 + 7878195 commit 7d8c0c7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: garethjns/social-distancing-sim
tags: 0.10.0,latest
tags: 0.10.1,latest
3 changes: 2 additions & 1 deletion requirements_agents.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
reinforcement-learning-keras==0.5.0
reinforcement-learning-keras==0.5.1

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
"Operating System :: OS Independent"],
python_requires='>=3.6',
install_requires=["networkx", "numpy", "matplotlib", "imageio", "dataclasses", "tqdm", "joblib", "seaborn",
"mlflow", "gym", "uvicorn", "aiofiles", "fastapi", "reinforcement-learning-keras==0.5.0"])
"mlflow", "gym", "uvicorn", "aiofiles", "fastapi", "reinforcement-learning-keras==0.5.1"])
2 changes: 1 addition & 1 deletion social_distancing_sim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MAJOR = 0
MINOR = 10
PATCH = 0
PATCH = 1

__version__ = ".".join(str(v) for v in [MAJOR, MINOR, PATCH])

0 comments on commit 7d8c0c7

Please sign in to comment.