mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-07-30 20:18:15 +00:00
* Drop python 3.6 support * Update doc * Update gitlab CI * Update doc env * Fix gitlab CI
22 lines
410 B
YAML
22 lines
410 B
YAML
image: stablebaselines/stable-baselines3-cpu:1.3.1a3
|
|
|
|
type-check:
|
|
script:
|
|
- make type
|
|
|
|
pytest:
|
|
script:
|
|
- python --version
|
|
# Fix to get atari ROMs
|
|
- pip install atari-py==0.2.5
|
|
# MKL_THREADING_LAYER=GNU to avoid MKL_THREADING_LAYER=INTEL incompatibility error
|
|
- MKL_THREADING_LAYER=GNU make pytest
|
|
|
|
doc-build:
|
|
script:
|
|
- make doc
|
|
|
|
lint-check:
|
|
script:
|
|
- make check-codestyle
|
|
- make lint
|