Skip to content

Commit

Permalink
Drop 3.6 python (#185)
Browse files Browse the repository at this point in the history
franchuterivera authored Jun 25, 2021

Verified

This commit was signed with the committer’s verified signature.
germa89 German
1 parent 26a55ff commit 5e8acfd
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]
use-conda: [true, false]
use-dist: [false]
include:
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: [36, 37, 38, 39]
python: [37, 38, 39]
bitness: [32, 64]
manylinux_image: [manylinux2014]
include:
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ Basic usage
Installation
============

*ConfigSpace* requires Python 3.6 or higher.
*ConfigSpace* requires Python 3.7 or higher.

*ConfigSpace* can be installed with *pip*:

5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -51,9 +51,8 @@ def finalize_options(self):
TEST_SUITE = "pytest"
SETUP_REQS = ['numpy', 'cython']
INSTALL_REQS = ['numpy', 'cython', 'pyparsing']
MIN_PYTHON_VERSION = '>=3.6'
CLASSIFIERS = ['Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
MIN_PYTHON_VERSION = '>=3.7'
CLASSIFIERS = ['Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Development Status :: 4 - Beta',

0 comments on commit 5e8acfd

Please sign in to comment.