Skip to content

Commit

Permalink
Merge pull request #5 from pkyosx/feat/new-python-version
Browse files Browse the repository at this point in the history
feat: upgrade python supported versions
  • Loading branch information
pkyosx authored Apr 8, 2024
2 parents eaea29c + d417067 commit 2f5d5c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
]
description = "A easy to use validator for json content"
requires-python = '>=3.6'
Expand All @@ -28,9 +28,11 @@ Home = "https://github.com/pkyosx/believe"

[project.optional-dependencies]
test = [
"coverage<7.0.0",
"pytest",
"pytest-cov",
"coverage-lcov",
"toml",
]
publish = [
"flit"
Expand Down

1 comment on commit 2f5d5c6

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage for this commit

98.69%

Coverage Report
FileBranchesFuncsLinesUncovered Lines
believe
   __init__.py100%100%100%
   dict_matcher.py100%100%100%
   error.py100%100%100%
   internal.py100%100%97.62%49
   list_matcher.py100%100%96.23%30, 36
   number_matcher.py100%100%100%
   other_matcher.py100%100%100%
   str_matcher.py100%100%98.11%55–56

Please sign in to comment.