Skip to content

Commit ca56618

Browse files
committed
Add testing and support for 3.11 and 3.12
1 parent 395d2b8 commit ca56618

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: uniondiff
22
on:
33
push:
44
branches:
5-
- main
5+
- "**"
66
jobs:
77
python-versions:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["3.8", "3.9", "3.10"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
@@ -34,7 +34,7 @@ jobs:
3434
- name: Set up Python
3535
uses: actions/setup-python@v4
3636
with:
37-
python-version: 3.8
37+
python-version: 3.12
3838
- name: Install dev deps
3939
run: python -m pip install -r requirements-dev.txt
4040
- name: Test

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ CLI utility and the *uniondiff* Python library.
2929
pip install uniondiff
3030
```
3131

32-
*uniondiff* is supported and tested on Python 3.8-3.10
32+
*uniondiff* is supported and tested on Python 3.8-3.12
3333

3434
## Examples
3535

requirements-dev.txt

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
black==22.10.0
2-
build~=0.8
3-
isort~=5.10.1
4-
mypy~=0.982
5-
pylint~=2.15
6-
pylint-pydantic~=0.1
7-
pytest~=7.1
8-
pytest-cov~=4.0
1+
black ~= 24.4.2
2+
isort ~=5.13.2
3+
mypy ~= 1.10.0
4+
pylint ~= 3.2.1
5+
6+
pytest ~= 8.1
7+
pytest-cov ~= 5.0

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ classifiers =
1313
Programming Language :: Python :: 3.8
1414
Programming Language :: Python :: 3.9
1515
Programming Language :: Python :: 3.10
16+
Programming Language :: Python :: 3.11
17+
Programming Language :: Python :: 3.12
1618
License :: OSI Approved :: BSD License
1719
Operating System :: OS Independent
1820

uniondiff/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.0"
1+
__version__ = "0.1.1"

0 commit comments

Comments
 (0)