Skip to content
Open
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
8 changes: 8 additions & 0 deletions .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[tool.bumpversion]
current_version = "0.5.0"
commit = true
tag = true
tag_name = "{new_version}"

[[tool.bumpversion.files]]
filename = "setup.py"
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install '.[test]'
python -m pip install '.[dev]'
- name: Lint with ruff
run: |
ruff .
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@
install_requires=['pyserial'],
extras_require={

'test': [
'dev': [
'mypy==1.5.1',
'pytest>=6,<8',
'pytest-cov>=4,<5',
'pytest-asyncio==0.*',
'ruff==0.0.287',
'types-pyserial',
'bump-my-version',
]
},
entry_points={
Expand Down