Skip to content

Commit

Permalink
Drop support for Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kbattocchi committed Nov 6, 2020
1 parent feb5bfc commit a1d6aa8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
13 changes: 2 additions & 11 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
dependsOn: 'EvalChanges'
condition: eq(dependencies.EvalChanges.outputs['output.buildNbs'], 'True')
variables:
python.version: '3.6'
python.version: '3.8'
pool:
vmImage: 'ubuntu-16.04'
steps:
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
dependsOn: 'EvalChanges'
condition: eq(dependencies.EvalChanges.outputs['output.testCode'], 'True')
variables:
python.version: '3.6'
python.version: '3.8'
pool:
vmImage: 'macOS-10.15'
steps:
Expand All @@ -158,15 +158,6 @@ jobs:
condition: eq(dependencies.EvalChanges.outputs['output.testCode'], 'True')
strategy:
matrix:
Linux, Python 3.5:
imageName: 'ubuntu-16.04'
python.version: '3.5'
macOS, Python 3.5:
imageName: 'macOS-10.15'
python.version: '3.5'
Windows, Python 3.5:
imageName: 'vs2017-win2016'
python.version: '3.5'
Linux, Python 3.6:
imageName: 'ubuntu-16.04'
python.version: '3.6'
Expand Down
6 changes: 1 addition & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ project_urls =
Source Code=https://github.com/Microsoft/EconML
Documentation=https://econml.azurewebsites.net/
classifiers =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Expand All @@ -48,9 +47,7 @@ install_requires =
numba != 0.42.1
statsmodels >= 0.9
graphviz
matplotlib < 3.1; python_version <= '3.5'
matplotlib; python_version > '3.5'
llvmlite < 0.32; python_version <= '3.5'
matplotlib
pandas < 1.1
test_suite = econml.tests
tests_require =
Expand All @@ -59,7 +56,6 @@ tests_require =
pytest-cov
jupyter
nbconvert < 6
traitlets < 5; python_version <= '3.5'
seaborn
lightgbm
dowhy
Expand Down

0 comments on commit a1d6aa8

Please sign in to comment.