-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from jedie/dev
Dev
- Loading branch information
Showing
14 changed files
with
2,156 additions
and
636 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
*.egg-info | ||
__pycache__ | ||
/dist/ | ||
/coverage.json | ||
/coverage.xml | ||
/coverage.* | ||
*.orig | ||
|
||
!.github | ||
!.editorconfig | ||
|
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
from dragonpy.vectrex.machine import run_Vectrex | ||
|
||
|
||
__version__ = '0.9.0' | ||
__version__ = '0.9.1' | ||
__author__ = 'Jens Diemer <[email protected]>' | ||
|
||
|
||
|
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from unittest import TestCase | ||
|
||
from bx_py_utils.auto_doc import assert_readme_block | ||
from cli_base.cli_tools.git_history import get_git_history | ||
|
||
import dragonpy | ||
from dragonpy.cli.cli_app import PACKAGE_ROOT | ||
|
||
|
||
class ReadmeHistoryTestCase(TestCase): | ||
def test_readme_history(self): | ||
git_history = get_git_history( | ||
current_version=dragonpy.__version__, | ||
add_author=False, | ||
) | ||
history = '\n'.join(git_history) | ||
assert_readme_block( | ||
readme_path=PACKAGE_ROOT / 'README.md', | ||
text_block=f'\n{history}\n', | ||
start_marker_line='[comment]: <> (✂✂✂ auto generated history start ✂✂✂)', | ||
end_marker_line='[comment]: <> (✂✂✂ auto generated history end ✂✂✂)', | ||
) |
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 |
---|---|---|
|
@@ -8,10 +8,11 @@ readme = "README.md" | |
authors = [ | ||
{name = 'Jens Diemer', email = '[email protected]'} | ||
] | ||
requires-python = ">=3.10,<4" | ||
requires-python = ">=3.9,<4" | ||
dependencies = [ | ||
"MC6809", # https://github.com/6809/MC6809 | ||
"dragonlib", # https://github.com/6809/dragonlib | ||
"cli-base-utilities", # https://github.com/jedie/cli-base-utilities | ||
"manageprojects", # https://github.com/jedie/manageprojects | ||
"pygments", # https://pygments.org/ | ||
"bx_py_utils", # https://github.com/boxine/bx_py_utils | ||
|
@@ -119,7 +120,7 @@ exclude_lines = [ | |
legacy_tox_ini = """ | ||
[tox] | ||
isolated_build = True | ||
envlist = py{311,310} | ||
envlist = py{312,311,310,39} | ||
skip_missing_interpreters = True | ||
[testenv] | ||
|
@@ -165,4 +166,5 @@ _template = "https://github.com/jedie/cookiecutter_templates/" | |
applied_migrations = [ | ||
"04d5a25", # 2023-03-07T16:25:36+01:00 | ||
"da054d6", # 2023-08-04T17:39:02+02:00 | ||
"c1a9d97", # 2023-11-01T19:59:17+01:00 | ||
] |
Oops, something went wrong.