Skip to content

Commit

Permalink
Updated a few items for buidling and versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
micahjohnson150 committed Dec 23, 2024
1 parent 8232595 commit e22fb17
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
17 changes: 7 additions & 10 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
[bumpversion]
current_version = 0.9.1
current_version = 0.9.4
commit = True
tag = True

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

[bumpversion:file:radicl/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
search = '{current_version}'
replace = '{new_version}'

[bdist_wheel]
universal = 1

[flake8]
exclude = docs

[aliases]
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']

1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip setuptools wheel
python -m pip install -r requirements.txt
python3 -m pip install -e ".[dev]"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
]
dependencies = ["study_lyte >= 0.8.0",
dependencies = ["study_lyte >= 0.9.0",
"pyserial>=3.4, <4.0.0",
"colorama>=0.4.3, <0.5.0",
"termcolor>=1.1.0, <2.0.0",
Expand Down

0 comments on commit e22fb17

Please sign in to comment.