Skip to content

Commit 67dfaac

Browse files
lonnenerikrose
authored andcommitted
2023 python version update
this updates parsimonious to support currently supported versions of python as of 2023q4
1 parent 39b3d71 commit 67dfaac

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: ['3.7', '3.8', '3.9', '3.10']
17+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1818

1919
name: Python ${{ matrix.python-version}}
2020
steps:
21-
- uses: actions/checkout@v2.3.5
21+
- uses: actions/checkout@v3
2222

2323
- name: Set up Python
24-
uses: actions/setup-python@v2.2.2
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ classifiers = [
2626
"Operating System :: OS Independent",
2727
"Programming Language :: Python :: 3 :: Only",
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.7",
3029
"Programming Language :: Python :: 3.8",
3130
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
32+
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
3334
"Topic :: Scientific/Engineering :: Information Analysis",
3435
"Topic :: Software Development :: Libraries",
3536
"Topic :: Text Processing :: General",

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
2-
envlist = py37, py38, py39, py310
2+
envlist = py38, py39, py310, py311, py312
33

44
[gh-actions]
55
python =
6-
3.7: py37
76
3.8: py38
87
3.9: py39
98
3.10: py310
9+
3.11: py311
10+
3.12: py312
1011

1112
[testenv]
1213
usedevelop = True

0 commit comments

Comments
 (0)