Compare commits

...

4 Commits

Author SHA1 Message Date
FahadKhalid210
597ef1ffe6 update chnagelog 2024-03-13 09:55:47 +05:00
FahadKhalid210
f2ac0e35f4 add changelog entry 2024-03-04 10:52:23 +05:00
FahadKhalid210
3b77a48329 add python version in name 2024-02-28 16:49:38 +05:00
FahadKhalid210
5a16745c79 add py312 checks 2024-02-28 16:43:42 +05:00
2 changed files with 7 additions and 3 deletions

View File

@ -7,12 +7,15 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools
- name: Install dependencies

View File

@ -0,0 +1 @@
- [Improvement] Add Python 3.12 CI compatibility (by @Fahadkhalid210)