Skip to content

Commit

Permalink
Test against Python 3.11 in PR checks (#106)
Browse files Browse the repository at this point in the history
* Test Python 3.11

* Update CHANGELOG

* Lower  coverage check for now
  • Loading branch information
bgrant committed Nov 16, 2022
1 parent ab681eb commit c6de503
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [unreleased] - XXXX-XX-XX
### Added
- [PR 106](https://github.com/salesforce/django-declarative-apis/pull/106) Test against Python 3.11 in PR checks

# [0.24.0] - 2022-11-03
### Added
- [PR 103](https://github.com/salesforce/django-declarative-apis/pull/103) Update contributing doc
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -23,5 +23,5 @@ exclude = '''
omit = ["*/tests/*", "*/management/*", "*/migrations/*"]

[tool.coverage.report]
fail_under = 91
fail_under = 90
exclude_lines = ["raise NotImplementedError"]

0 comments on commit c6de503

Please sign in to comment.