Skip to content

Commit

Permalink
Add testing and support for 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
msg555 committed May 19, 2024
1 parent 395d2b8 commit e64cd62
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: uniondiff
on:
push:
branches:
- main
- "**"
jobs:
python-versions:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.12
- name: Install dev deps
run: python -m pip install -r requirements-dev.txt
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ CLI utility and the *uniondiff* Python library.
pip install uniondiff
```

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

## Examples

Expand Down
15 changes: 7 additions & 8 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
black==22.10.0
build~=0.8
isort~=5.10.1
mypy~=0.982
pylint~=2.15
pylint-pydantic~=0.1
pytest~=7.1
pytest-cov~=4.0
black ~= 24.4.2
isort ~=5.13.2
mypy ~= 1.10.0
pylint ~= 3.2.1

pytest ~= 8.1
pytest-cov ~= 5.0
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: BSD License
Operating System :: OS Independent

Expand Down

0 comments on commit e64cd62

Please sign in to comment.