-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove encoding comment * Enable newer Python versions for CI * Advertise newer Python versions
- Loading branch information
Showing
5 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
"""Module to parse SJSON files.""" | ||
# coding=utf8 | ||
# @author: Matthäus G. Chajdas | ||
# @license: 3-clause BSD | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# coding=utf8 | ||
# @author: Matthäus G. Chajdas | ||
# @license: 3-clause BSD | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[tox] | ||
envlist=py36,py37,py38,py39 | ||
envlist=py38,py39,py310,py311,py312 | ||
|
||
[testenv] | ||
deps= | ||
pytest | ||
commands= | ||
py.test sjson | ||
pytest sjson | ||
|
||
[testenv:cov] | ||
deps= | ||
pytest | ||
pytest-cov | ||
coverage | ||
commands= | ||
py.test --cov=sjson sjson | ||
pytest --cov=sjson sjson | ||
coverage html |