diff options
author | 2022-10-31 21:23:59 +0400 | |
---|---|---|
committer | 2022-10-31 21:58:50 +0400 | |
commit | a35713e1dcb8a8223318b75e6f132332f65d31e8 (patch) | |
tree | 68f964a1f3a90fb0c1b255c318fe0c759f6ff6e0 /.github | |
parent | Merge pull request #151 from python-discord/bump-deps (diff) |
Bump Python To 3.11
Upgrade build image, configuration files, and documentation to python
3.11.
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to '.github')
-rw-r--r-- | .github/CONTRIBUTING.md | 2 | ||||
-rw-r--r-- | .github/workflows/lint.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/test.yaml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index b15a4ba..6b70ce8 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -6,7 +6,7 @@ The Contributing Guidelines for Python Discord projects can be found [on our web ## Initial Setup -A Python 3.10 interpreter and `make` are required. A virtual environment is also recommended. Once that is set up, install the project's dependencies with `make setup`. +A Python 3.11 interpreter and `make` are required. A virtual environment is also recommended. Once that is set up, install the project's dependencies with `make setup`. This also installs a git pre-commit hook so that the linter runs upon a commit. Manual invocation is still possible with `make lint`. diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index d53738b..b4b69ac 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -17,7 +17,7 @@ jobs: id: python uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.11" cache: pip cache-dependency-path: requirements/lint.pip diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 51eb0f8..189dc4c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -65,7 +65,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.11" cache: pip cache-dependency-path: requirements/coveralls.pip |