Skip to content

Commit

Permalink
Merge pull request #47 from kngwyu/azure-fix
Browse files Browse the repository at this point in the history
Some fixes for Azure
  • Loading branch information
kngwyu authored Jan 14, 2020
2 parents a9ac985 + eb2cfca commit 8f937c1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ Notable changes after forking are tracked in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## Unreleased
## [2.0.0 Beta1]
### Added
* OpenAI gym interface by [#40](https://github.com/kngwyu/rlpy3/pull/40).
* Enhanced viewers for GridWorld by [#44](https://github.com/kngwyu/rlpy3/pull/44).

### Removed
* Python 3.5 support

## [2.0.0 Beta]
## [2.0.0 Beta0]

### Added
* PSRL by [#23](https://github.com/kngwyu/rlpy3/pull/23).
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RLPy3

.. |pypi-python-version| image:: https://img.shields.io/pypi/pyversions/rlpy3.svg
:alt: PyPI
:target: https://pypi.org/project/rlpy3/2.0.0b
:target: https://pypi.org/project/rlpy3/2.0.0b1

Why Fork?
----------
Expand Down
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ jobs:
PYTHON_VERSION: '3.6'
Python37:
PYTHON_VERSION: '3.7'
Python38:
PYTHON_VERSION: '3.8'
maxParallel: 4
steps:
- template: azure-templates/wheel.yml
Expand Down
2 changes: 1 addition & 1 deletion build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -ex

cd /io

for PYBIN in /opt/python/cp{35,36,37,38}*/bin; do
for PYBIN in /opt/python/cp{36,37,38}*/bin; do
export PYTHON_SYS_EXECUTABLE="$PYBIN/python"
"${PYBIN}/pip" install -U setuptools cython
"${PYBIN}/python" setup.py bdist_wheel
Expand Down

0 comments on commit 8f937c1

Please sign in to comment.