1
0
mirror of synced 2025-12-19 18:14:56 -05:00

Upgrade to Python 3.9 (#11763)

* Dockerfile to 3.9

* Python version

* More python updates

* 3.9 on GitHub actions and lint updates

* Test out 3.9.11 on GitHub actions

* install python with an action

* formatting: newline

* Also has python code

* only check first level for changed modules
Previous example (source-google-search-console/credentials)

* Test failure: there is no logger.trace
This commit is contained in:
Brian Leonard
2022-04-11 20:51:37 -07:00
committed by GitHub
parent b85c51304f
commit c302af45ff
168 changed files with 278 additions and 293 deletions

View File

@@ -6,11 +6,11 @@ This is a step-by-step guide for how to create an Airbyte source in Python to re
## Requirements
* Python >= 3.7
* Python >= 3.9
* Docker
* NodeJS \(only used to generate the connector\). We'll remove the NodeJS dependency soon.
All the commands below assume that `python` points to a version of python >=3.7.0. On some systems, `python` points to a Python2 installation and `python3` points to Python3. If this is the case on your machine, substitute all `python` commands in this guide with `python3`.
All the commands below assume that `python` points to a version of python >=3.9.0. On some systems, `python` points to a Python2 installation and `python3` points to Python3. If this is the case on your machine, substitute all `python` commands in this guide with `python3`.
## Checklist