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
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
include LICENSE
include README.md
include dep_check/infra/lib/setup.py

recursive-include tests *
recursive-exclude * __pycache__
Expand Down
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ coverage: ## check code coverage quickly with the default Python
xdg-open htmlcov/index.html

install: clean ## install the package to the active Python's site-packages
$(PYTHON_EXEC) setup.py install
venv/bin/uv pip install .

dist: clean ## builds source and wheel package
source venv/bin/activate && \
$(PYTHON_EXEC) setup.py sdist && \
$(PYTHON_EXEC) setup.py bdist_wheel
venv/bin/python -m build
2 changes: 1 addition & 1 deletion dep_check/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """LumApps"""
__email__ = "core-devs@lumapps.com"
__version__ = "3.1.0"
__version__ = "3.2.0"
3 changes: 2 additions & 1 deletion dev-requirements.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
build
tox
coverage

Expand All @@ -16,4 +17,4 @@ types-PyYAML
backports-tarfile
exceptiongroup
importlib-metadata
tomli;
tomli
9 changes: 9 additions & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ black==24.3.0 \
--hash=sha256:e19cb1c6365fd6dc38a6eae2dcb691d7d83935c10215aef8e6c38edee3f77abd \
--hash=sha256:e2af80566f43c85f5797365077fb64a393861a3730bd110971ab7a0c94e873e7
# via -r dev-requirements.in
build==1.4.0 \
--hash=sha256:6a07c1b8eb6f2b311b96fcbdbce5dab5fe637ffda0fd83c9cac622e927501596 \
--hash=sha256:f1b91b925aa322be454f8330c6fb48b465da993d1e7e7e6fa35027ec49f3c936
# via -r dev-requirements.in
cachetools==7.0.1 \
--hash=sha256:8f086515c254d5664ae2146d14fc7f65c9a4bce75152eb247e5a9c5e6d7b2ecf \
--hash=sha256:e31e579d2c5b6e2944177a0397150d312888ddf4e16e12f1016068f0c03b8341
Expand Down Expand Up @@ -764,6 +768,7 @@ packaging==26.0 \
--hash=sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529
# via
# black
# build
# pyproject-api
# pytest
# tox
Expand Down Expand Up @@ -818,6 +823,10 @@ pyproject-api==1.10.0 \
--hash=sha256:40c6f2d82eebdc4afee61c773ed208c04c19db4c4a60d97f8d7be3ebc0bbb330 \
--hash=sha256:8757c41a79c0f4ab71b99abed52b97ecf66bd20b04fa59da43b5840bac105a09
# via tox
pyproject-hooks==1.2.0 \
--hash=sha256:1e859bd5c40fae9448642dd871adf459e5e2084186e8d2c2a79a824c970da1f8 \
--hash=sha256:9e5c6bfa8dcc30091c74b0cf803c81fdd29d94f01992a7707bc97babb1141913
# via build
pytest==9.0.2 \
--hash=sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b \
--hash=sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11
Expand Down
6 changes: 6 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 3.2.0(2026-02-12)

- Bump to python3.13
- Drop python3.9 support
- Update dependencies

## 3.0.1(2023-03-28)

### BUGFIX
Expand Down
4 changes: 2 additions & 2 deletions doc/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ development.
3. Install your local copy into a virtualenv:

```sh
python3.7 -m venv venv
python3.13 -m venv venv
source venv/bin/activate && \
python3.7 setup.py develop && \
pip install -e . && \
make init
```

Expand Down
Loading