Skip to content

Commit

Permalink
Remove support for python 3.6 (#853)
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Normandin <fabrice.normandin@gmail.com>
  • Loading branch information
lebrice committed Mar 24, 2022
1 parent 8a13137 commit 20a9837
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
max-parallel: 4
matrix:
platform: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]
env:
PLATFORM: ${{ matrix.platform }}
steps:
Expand Down
1 change: 0 additions & 1 deletion conda/ci_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ conda update -q conda
conda info -a
conda install conda-build anaconda-client

conda build conda --python 3.6
conda build conda --python 3.7
conda build conda --python 3.8
conda build conda --python 3.9
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
packages=packages,
package_dir={"": "src"},
include_package_data=True,
python_requires=">=3.7",
entry_points={
"console_scripts": [
"orion = orion.core.cli:main",
Expand Down Expand Up @@ -80,7 +81,6 @@
},
install_requires=[
"cloudpickle",
"dataclasses;python_version<'3.7'",
"PyYAML",
"pymongo>=3",
"numpy",
Expand Down Expand Up @@ -129,7 +129,7 @@
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
] + [("Programming Language :: Python :: %s" % x) for x in "3 3.6 3.7 3.8 3.9".split()]
] + [("Programming Language :: Python :: %s" % x) for x in "3 3.7 3.8 3.9".split()]

if __name__ == "__main__":
setup(**setup_args)
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
[tox]
envlist = py{36,37,38,39}-{linux,macos}{,-all}
envlist = py{37,38,39}-{linux,macos}{,-all}

#########################################################
# Tox environments
#########################################################

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
Expand Down

0 comments on commit 20a9837

Please sign in to comment.