Merge pull request #422 from anmol098/python-upgrade

Upgrade Python to 3.11
This commit is contained in:
Aravind Nair
2023-03-13 00:27:20 +05:30
committed by GitHub
4 changed files with 7 additions and 7 deletions

View File

@@ -17,10 +17,10 @@ jobs:
- name: Checkout 🛎️ - name: Checkout 🛎️
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Python 3.8 🐍 - name: Setup Python 3.11 🐍
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: 3.8 python-version: 3.11
cache: 'pip' cache: 'pip'
- name: Install Dependencies 📥 - name: Install Dependencies 📥

View File

@@ -31,10 +31,10 @@ jobs:
- name: Checkout 🛎️ - name: Checkout 🛎️
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Python 3.8 🐍 - name: Setup Python 3.11 🐍
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: 3.8 python-version: 3.11
cache: 'pip' cache: 'pip'
- name: Install dependencies 📥 - name: Install dependencies 📥

View File

@@ -12,10 +12,10 @@ jobs:
- name: Checkout 🛎️ - name: Checkout 🛎️
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Python 3.8 🐍 - name: Setup Python 3.11 🐍
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: 3.8 python-version: 3.11
- name: Install Dependencies 📥 - name: Install Dependencies 📥
run: pip install -r requirements.txt run: pip install -r requirements.txt

View File

@@ -1,4 +1,4 @@
FROM python:3.9-alpine FROM python:3.11-alpine
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONDONTWRITEBYTECODE 1