Skip to content

Commit

Permalink
Merge pull request #129 from sepandhaghighi/dev
Browse files Browse the repository at this point in the history
Version 1.3
  • Loading branch information
sepandhaghighi authored Nov 30, 2022
2 parents e87dcee + fb9ee1d commit 82dde65
Show file tree
Hide file tree
Showing 13 changed files with 306 additions and 142 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0, 3.11.0]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -26,7 +26,8 @@ jobs:
python setup.py install
- name: First test
run: |
python -m pyrgg test
pyrgg test
pyrgg --version
- name: Test requirements Installation
run: |
python otherfile/requirements-splitter.py
Expand All @@ -37,17 +38,17 @@ jobs:
- name: Version check
run: |
python otherfile/version_check.py
if: matrix.python-version == 3.7
if: matrix.python-version == 3.8
- name: Other tests
run: |
python -m vulture pyrgg/ otherfile/ setup.py --min-confidence 65 --exclude=__init__.py --sort-by-size
python -m bandit -r pyrgg -s B311,B403
python -m pydocstyle -v --match-dir=pyrgg
if: matrix.python-version == 3.7
if: matrix.python-version == 3.8
- name: Codecov
run: |
codecov
if: matrix.python-version == 3.7 && matrix.os == 'ubuntu-latest'
if: matrix.python-version == 3.8 && matrix.os == 'ubuntu-latest'
- name: cProfile
run: |
python -m cProfile -s cumtime otherfile/pyrgg_profile.py
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.3] - 2022-11-30
### Added
- Graphviz(DOT) format
### Changed
- [asciinema](https://asciinema.org) instruction video updated
- Test system modified
- `README.md` modified
- `Python 3.11` added to `test.yml`
- CLI mode updated
- `dev-requirements.txt` updated
- To-do list moved to `TODO.md`
## [1.2] - 2022-09-07
### Added
- Anaconda workflow
Expand Down Expand Up @@ -147,7 +158,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- JSON format
- README

[Unreleased]: https://github.com/sepandhaghighi/pyrgg/compare/v1.2...dev
[Unreleased]: https://github.com/sepandhaghighi/pyrgg/compare/v1.3...dev
[1.3]: https://github.com/sepandhaghighi/pyrgg/compare/v1.2...v1.3
[1.2]: https://github.com/sepandhaghighi/pyrgg/compare/v1.1...v1.2
[1.1]: https://github.com/sepandhaghighi/pyrgg/compare/v1.0...v1.1
[1.0]: https://github.com/sepandhaghighi/pyrgg/compare/v0.9...v1.0
Expand Down
Loading

0 comments on commit 82dde65

Please sign in to comment.