parent
a1b5ea67ae
commit
833669a88b
|
|
@ -16,7 +16,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.6, 3.7, 3.8, 3.9]
|
python-version: [3.7, 3.8, 3.9]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,9 @@ channels:
|
||||||
- defaults
|
- defaults
|
||||||
dependencies:
|
dependencies:
|
||||||
- cpuonly=1.0=0
|
- cpuonly=1.0=0
|
||||||
- pip=20.2
|
- pip=21.1
|
||||||
- python=3.6
|
- python=3.7
|
||||||
- pytorch=1.8.1=py3.6_cpu_0
|
- pytorch=1.8.1=py3.7_cpu_0
|
||||||
- pip:
|
- pip:
|
||||||
- gym>=0.17.2
|
- gym>=0.17.2
|
||||||
- cloudpickle
|
- cloudpickle
|
||||||
|
|
@ -15,7 +15,7 @@ dependencies:
|
||||||
- numpy
|
- numpy
|
||||||
- matplotlib
|
- matplotlib
|
||||||
- sphinx_autodoc_typehints
|
- sphinx_autodoc_typehints
|
||||||
- stable-baselines3>=1.2.0
|
- stable-baselines3>=1.3.0
|
||||||
- sphinx>=4.2
|
- sphinx>=4.2
|
||||||
# See https://github.com/readthedocs/sphinx_rtd_theme/issues/1115
|
# See https://github.com/readthedocs/sphinx_rtd_theme/issues/1115
|
||||||
- sphinx_rtd_theme>=1.0
|
- sphinx_rtd_theme>=1.0
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,12 @@ Changelog
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
||||||
Release 1.3.1a4 (WIP)
|
Release 1.3.1a5 (WIP)
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
Breaking Changes:
|
Breaking Changes:
|
||||||
^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^
|
||||||
|
- Dropped python 3.6 support
|
||||||
- Upgraded to Stable-Baselines3 >= 1.3.1a4
|
- Upgraded to Stable-Baselines3 >= 1.3.1a4
|
||||||
|
|
||||||
New Features:
|
New Features:
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
1.3.1a4
|
1.3.1a5
|
||||||
|
|
|
||||||
3
setup.py
3
setup.py
|
|
@ -75,11 +75,10 @@ setup(
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
version=__version__,
|
version=__version__,
|
||||||
python_requires=">=3.6",
|
python_requires=">=3.7",
|
||||||
# PyPI package information.
|
# PyPI package information.
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.6",
|
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue