diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eaa22cc..facdbaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,10 +17,10 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3 - - name: Setup Python 3.8 🐍 + - name: Setup Python 3.11 🐍 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.11 cache: 'pip' - name: Install Dependencies 📥 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index fd24e97..91513c7 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -31,10 +31,10 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3 - - name: Setup Python 3.8 🐍 + - name: Setup Python 3.11 🐍 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.11 cache: 'pip' - name: Install dependencies 📥 diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index 5ac6780..c2b5d18 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -12,10 +12,10 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3 - - name: Setup Python 3.8 🐍 + - name: Setup Python 3.11 🐍 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.11 - name: Install Dependencies 📥 run: pip install -r requirements.txt diff --git a/Dockerfile b/Dockerfile index 06a4645..7496c17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-alpine +FROM python:3.11-alpine ENV PYTHONUNBUFFERED 1 ENV PYTHONDONTWRITEBYTECODE 1