Skip to content
Open
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
16 changes: 15 additions & 1 deletion .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,22 @@ jobs:
cmake -B build -D CMAKE_BUILD_TYPE=Release
cmake --build build --target all -j4 --config Release

- name: test
- name: cpp test
run: |
./build/agario/test-engine
./build/agario/test-engine-renderable
./build/bench/agario-bench


- name: python install
env:
CXX: ${{ matrix.cxx }}
run: |
python -m venv .venv
. .venv/bin/activate
python setup.py install

- name: python test
run: |
. .venv/bin/activate
python bench/agarle_bench.py
27 changes: 16 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,19 @@ def build_extension(self, ext):
long_description = f.read()

setup(name='GymAgario',
version='0.0.1',
author="The Authors of the Paper",
author_email="agarcl.2025@gmail.com",
description="Agar.io as continual learning environment for OpenAI Gym",
url="",
install_requires=["gymnasium~=0.29", "numpy"],
packages=["gym_agario"],
long_description=long_description,
ext_modules=[CMakeExtension('agarcl')],
cmdclass=dict(build_ext=CMakeBuild),
license="MIT")
version='0.0.1',
author="Mohamed A. Mohamed",
author_email="mamoham3@ualberta.ca",
description="Agar.io as continual learning environment for OpenAI Gym",
url="",
install_requires=[
"gymnasium~=0.29",
"numpy",
"setuptools",
],
packages=["gym_agario"],
long_description=long_description,
ext_modules=[CMakeExtension('agarcl')],
cmdclass=dict(build_ext=CMakeBuild),
license="MIT",
)