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

Bump ray[default,rllib] from 2.5.0 to 2.12.0 #78

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/sdist-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# A workflow to test the sdist that will be released to PyPI

name: sdist-test

on:
workflow_dispatch:

permissions: read-all

jobs:
sdist-test:
name: Test sdist
runs-on: ubuntu-latest
timeout-minutes: 90

steps:
- name: Checkout Melting Pot
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11

- name: Build source distribution
run: python setup.py sdist

- name: Set up Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: '3.11'

- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install pytest-xdist setuptools

- name: Install source distribution
run: |
pip install dist/*.tar.gz

- name: Test source distribution
run: |
pytest -n auto --pyargs meltingpot
2 changes: 1 addition & 1 deletion examples/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ matplotlib
ml_collections
numpy
pettingzoo>=1.22.3
ray[rllib,default]==2.5.0
ray[rllib,default]==2.12.0
stable_baselines3
supersuit>=3.7.2
torch
Loading