Skip to content

Commit 1982db5

Browse files
authored
Maintenance (#114)
* Update github workflow - add 3.11 - upgrade action versions * Update supported python versions * Use python 3.8 for code linting
1 parent 970dc52 commit 1982db5

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
tests:
1111
strategy:
1212
matrix:
13-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
13+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
1414
os: [windows-2019]
1515
runs-on: ${{ matrix.os }}
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v4
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
architecture: 'x64'
@@ -32,7 +32,7 @@ jobs:
3232
pip install --upgrade cffi
3333
coverage run -m haas -v win32ctypes
3434
- name: Set up Python ${{ matrix.python-version }}
35-
uses: actions/setup-python@v2
35+
uses: actions/setup-python@v4
3636
with:
3737
python-version: ${{ matrix.python-version }}
3838
architecture: 'x86'
@@ -54,10 +54,10 @@ jobs:
5454
runs-on: ubuntu-latest
5555
steps:
5656
- uses: actions/checkout@v2
57-
- name: Set up Python 3.6
57+
- name: Set up Python 3.8
5858
uses: actions/setup-python@v2
5959
with:
60-
python-version: 3.6
60+
python-version: 3.8
6161
- name: Install flake8
6262
run: python -m pip install flake8
6363
- name: Lint codebase

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
classifiers=[
2222
"Programming Language :: Python :: 3.6",
2323
"Programming Language :: Python :: 3.7",
24+
"Programming Language :: Python :: 3.8",
25+
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
27+
"Programming Language :: Python :: 3.11",
2428
],
2529
zip_safe=False,
2630
test_suite='win32ctypes.tests')

0 commit comments

Comments
 (0)