Skip to content

Commit

Permalink
Merge branch 'main' of github.com:FLAIROx/JaxMARL
Browse files Browse the repository at this point in the history
  • Loading branch information
amacrutherford committed Nov 16, 2023
2 parents 07fa06e + 8f0b755 commit 3a1253e
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 4 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Upload Python Package

on:
release:
types: [published]

permissions:
contents: read

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<h1 align="center">JaxMARL</h1>

<p align="center">
<a href="https://pypi.python.org/pypi/jaxmarl">
<img src="https://img.shields.io/pypi/pyversions/jaxmarl.svg?style=flat-square" /></a>
<a href= "https://badge.fury.io/py/jaxmarl">
<img src="https://badge.fury.io/py/jaxmarl.svg" /></a>
<a href= "https://github.com/FLAIROx/JaxMARL/blob/main/LICENSE">
<img src="https://img.shields.io/badge/license-Apache2.0-blue.svg" /></a>
</p>
Expand All @@ -10,10 +14,10 @@

<div class="collage">
<div class="row" align="centre">
<img src="docs/imgs/cramped_room.gif" alt="Overcooked" width="20%">
<img src="docs/imgs/qmix_MPE_simple_tag_v3.gif" alt="MPE" width="20%">
<img src="docs/imgs/storm.gif" alt="STORM" width="20%">
<img src="docs/imgs/smax.gif" alt="SMAX" width="20%">
<img src="https://github.com/FLAIROx/JaxMARL/blob/main/docs/imgs/cramped_room.gif?raw=true" alt="Overcooked" width="20%">
<img src="https://github.com/FLAIROx/JaxMARL/blob/main/docs/imgs/qmix_MPE_simple_tag_v3.gif?raw=true" alt="MPE" width="20%">
<img src="https://github.com/FLAIROx/JaxMARL/blob/main/docs/imgs/storm.gif?raw=true" alt="STORM" width="20%">
<img src="https://github.com/FLAIROx/JaxMARL/blob/main/docs/imgs/smax.gif?raw=true" alt="SMAX" width="20%">
</div>
</div>

Expand Down

0 comments on commit 3a1253e

Please sign in to comment.