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