Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install .
- name: Smoke test
run: |
python -c "from tocount import *"
- name: Dev requirements installation
run: |
pip install -r requirements-dev.txt
Expand All @@ -55,3 +58,17 @@ jobs:
run: |
python otherfiles/version_check.py
if: matrix.python-version == env.TEST_PYTHON_VERSION
- name: Build package
run: |
python -m build
- name: Check package metadata
run: |
twine check dist/*
- name: Wheel smoke test
shell: bash
run: |
pip uninstall -y tocount
pip install dist/*.whl
mkdir wheel_test
cd wheel_test
python -c "from tocount import *"
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `TocountValidationError` class
### Changed
- `setup.py` updated
- Test system modified
- Dependencies structure modified
## [0.5] - 2026-01-02
### Added
Expand Down
4 changes: 3 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ vulture>=1.0
bandit>=1.5.1
pydocstyle>=6.3.0
pytest>=4.3.1
pytest-cov>=2.6.1
pytest-cov>=2.6.1
build>=1.1.1
twine>=4.0.2
Loading