Drop python 3.6 support (#55)

* Drop python 3.6

* Update setup file
This commit is contained in:
Antonin RAFFIN 2021-12-06 12:59:53 +01:00 committed by GitHub
parent a1b5ea67ae
commit 833669a88b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 9 deletions

View File

@ -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

View File

@ -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

View File

@ -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:

View File

@ -1 +1 @@
1.3.1a4 1.3.1a5

View File

@ -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",