Skip to content

Commit 4d11a23

Browse files
feat: Support Python@3.12 (#18)
1 parent 0ef2e8b commit 4d11a23

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v2
12-
- name: Set up Python 3.10
13-
uses: actions/setup-python@v3
11+
uses: actions/checkout@v4
12+
- name: Set up Python 3.11
13+
uses: actions/setup-python@v4
1414
with:
15-
python-version: '3.10'
15+
python-version: '3.11'
1616
- name: Install Flake8 & mypy
1717
run: >-
1818
python -m pip install --upgrade . mypy;
@@ -34,13 +34,14 @@ jobs:
3434
- '3.9'
3535
- '3.10'
3636
- '3.11'
37+
- '3.12'
3738
os:
3839
- ubuntu-latest
3940
steps:
4041
- name: Checkout
41-
uses: actions/checkout@v2
42+
uses: actions/checkout@v4
4243
- name: Set up Python ${{ matrix.python-version }}
43-
uses: actions/setup-python@v3
44+
uses: actions/setup-python@v4
4445
with:
4546
python-version: ${{ matrix.python-version }}
4647
- name: Install Python Dependencies

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313
- name: Set up Python 3.11
14-
uses: actions/setup-python@v3
14+
uses: actions/setup-python@v4
1515
with:
1616
python-version: '3.11'
1717
- name: Build a source tarball

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33

44
setuptools.setup(
55
name='flake8-intsights',
6-
version='0.3.1',
7-
author='Gal Ben David',
8-
author_email='gal@intsights.com',
6+
version='0.4.0',
97
url='https://github.com/Intsights/flake8-intsights',
108
project_urls={
119
'Source': 'https://github.com/Intsights/flake8-intsights',
@@ -21,6 +19,7 @@
2119
'Programming Language :: Python :: 3.9',
2220
'Programming Language :: Python :: 3.10',
2321
'Programming Language :: Python :: 3.11',
22+
'Programming Language :: Python :: 3.12',
2423
],
2524
keywords='flake8 conventions style lint linter intsights',
2625
python_requires='>=3.7',

0 commit comments

Comments
 (0)