-
Notifications
You must be signed in to change notification settings - Fork 726
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable Python 3.8 support #210
Conversation
d08827e
to
aba52bb
Compare
Abandoning this for now because tensorflow won't support Python 3.8 until version 2.2 sometime later this year, and we're limiting to tensorflow 1.* for now anyway. |
Tensorflow 2.2 will soon be out, so I'm reopening this so that we can support Python 3.8, which has been out for several months and is seeing increased use in practice. |
2b7af86
to
954ef4c
Compare
954ef4c
to
54f531b
Compare
6495632
to
ba1446c
Compare
ba1446c
to
b4be8af
Compare
b4be8af
to
d16e0bb
Compare
d16e0bb
to
fcf11c2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!
58fdc9f
to
7fc79fc
Compare
7fc79fc
to
9835a06
Compare
9835a06
to
1e29f6d
Compare
774a1ba
to
e9d49ba
Compare
e9d49ba
to
853b5fc
Compare
# - job: 'AutoML' | ||
# dependsOn: 'EvalChanges' | ||
# condition: eq(dependencies.EvalChanges.outputs['output.testCode'], 'True') | ||
# variables: | ||
# python.version: '3.6' | ||
# pool: | ||
# vmImage: 'ubuntu-16.04' | ||
# steps: | ||
# - template: azure-pipelines-steps.yml | ||
# parameters: | ||
# body: | ||
# - task: AzureCLI@2 | ||
# displayName: 'AutoML tests' | ||
# inputs: | ||
# azureSubscription: 'automl' | ||
# scriptLocation: 'inlineScript' | ||
# scriptType: 'pscore' | ||
# powerShellIgnoreLASTEXITCODE: '' # string for now due to https://github.com/microsoft/azure-pipelines-tasks/issues/12266 | ||
# inlineScript: | | ||
# $env:SUBSCRIPTION_ID = az account show --query id -o tsv | ||
# python setup.py pytest | ||
# env: | ||
# WORKSPACE_NAME: 'testWorkspace' | ||
# RESOURCE_GROUP: 'testingAutoMLEconML' | ||
# PYTEST_ADDOPTS: '-m "automl" -n 0' | ||
# COVERAGE_PROCESS_START: 'setup.cfg' | ||
|
||
# - task: PublishTestResults@2 | ||
# displayName: 'Publish Test Results **/test-results.xml' | ||
# inputs: | ||
# testResultsFiles: '**/test-results.xml' | ||
# testRunTitle: 'AutoML' | ||
# condition: succeededOrFailed() | ||
# package: '.[automl]' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Had to disable AutoML tests, because it seems like they were already broken by something changing server-side for AutoML and I couldn't figure out the necessary changes after a small amount of debugging. I've opened a new issue (#270) to fix this.
lightning package implements such a class: | ||
|
||
.. testcode:: | ||
lightning package implements such a class:: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Released versions of lightning are currently not compatible with sklearn 0.23 (though this problem has been fixed in the lightning GitHub repo - see scikit-learn-contrib/lightning#142). We can revert this small change if there is a new PyPI release.
No description provided.