-
Notifications
You must be signed in to change notification settings - Fork 532
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b71a17
commit bf21ddb
Showing
16 changed files
with
69 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,9 @@ cache: | |
- $HOME/roms/ | ||
language: cpp # Needed for ccache | ||
env: | ||
- PYVER=3.5 | ||
- PYVER=3.6 | ||
- PYVER=3.7 | ||
- PYVER=3.8 | ||
os: | ||
- linux | ||
- osx | ||
|
@@ -21,15 +21,15 @@ matrix: | |
- os: linux | ||
env: | ||
- CROSS=win64 | ||
- PYVER=3.5 | ||
- PYVER=3.6 | ||
- os: linux | ||
env: | ||
- CROSS=win64 | ||
- PYVER=3.6 | ||
- PYVER=3.7 | ||
- os: linux | ||
env: | ||
- CROSS=win64 | ||
- PYVER=3.7 | ||
- PYVER=3.8 | ||
|
||
before_script: | ||
- mkdir -p $HOME/roms | ||
|
@@ -40,6 +40,7 @@ script: | |
else | ||
TAG=$TRAVIS_OS_NAME | ||
fi | ||
TAG=${TAG}-v2 | ||
- > | ||
if [ "$TRAVIS_OS_NAME" == "linux" ]; then | ||
docker run | ||
|
@@ -60,7 +61,7 @@ script: | |
if [ "$TRAVIS_OS_NAME" == "osx" ]; then | ||
brew update > /dev/null | ||
brew install qt5 capnp [email protected] ccache | ||
curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh | ||
curl -o miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh | ||
bash miniconda.sh -b | ||
export PATH=/usr/local/opt/ccache/libexec:$HOME/miniconda3/bin:$PATH | ||
hash -r | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.7.1 | ||
0.8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
|
||
cd "$(dirname $0)/../" | ||
./docker/linux/build_scripts/prefetch.sh OPENSSL CURL | ||
docker build . --tag openai/retro-build:linux-v2 --file docker/linux/Dockerfile | ||
docker push openai/retro-build:linux-v2 | ||
docker build . --tag openai/retro-build:win64-v2 --file docker/windows/Dockerfile | ||
docker push openai/retro-build:win64-v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,4 +88,4 @@ fi | |
-no-sql-odbc \ | ||
-no-harfbuzz \ | ||
-no-openssl \ | ||
-no-dbus && make -j2 install | ||
-no-dbus && make -j$(nproc) install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,9 @@ | |
|
||
VERSION_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'VERSION') | ||
|
||
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) | ||
README = open(os.path.join(SCRIPT_DIR, "README.md")).read() | ||
|
||
if not os.path.exists(os.path.join(os.path.dirname(__file__), '.git')): | ||
use_scm_version = False | ||
shutil.copy('VERSION', 'retro/VERSION.txt') | ||
|
@@ -65,11 +68,13 @@ def run(self): | |
|
||
kwargs = {} | ||
if tuple(int(v) for v in setuptools_version.split('.')[:3]) >= (24, 2, 0): | ||
kwargs['python_requires'] = '>=3.5.0' | ||
kwargs['python_requires'] = '>=3.6.0' | ||
|
||
|
||
setup( | ||
name='gym-retro', | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
author='OpenAI', | ||
author_email='[email protected]', | ||
url='https://github.com/openai/retro', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters