Skip to content

Commit 5a375c5

Browse files
authored
#190 Merge pull request from astropenguin/astropenguin/issue189
Support Python 3.11
2 parents a847e67 + 512c30e commit 5a375c5

File tree

6 files changed

+687
-679
lines changed

6 files changed

+687
-679
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM python:3.10-slim
1+
FROM python:3.11-slim
22

33
ENV PATH=$PATH:/root/.local/bin
44
ENV POETRY_VIRTUALENVS_CREATE=false
5-
ENV POETRY_VERSION=1.2.0
5+
ENV POETRY_VERSION=1.3.2
66

77
RUN apt-get update \
88
&& apt-get install -y curl git \

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- uses: actions/setup-python@v2
1717
with:
18-
python-version: "3.10"
18+
python-version: "3.11"
1919
- name: Install project dependencies
2020
run: pip install poetry && poetry install
2121
- name: Build docs

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- uses: actions/setup-python@v2
1717
with:
18-
python-version: "3.10"
18+
python-version: "3.11"
1919
- name: Publish package to PyPI
2020
run: pip install poetry && poetry publish --build

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python: ["3.7", "3.8", "3.9", "3.10"]
20+
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
2121
steps:
2222
- uses: actions/checkout@v2
2323
- uses: actions/setup-python@v2

0 commit comments

Comments
 (0)