Skip to content

Commit

Permalink
Merge pull request #33 from velexi-research/dev/0.6.5
Browse files Browse the repository at this point in the history
Update package version dependencies. Update Makefile. Update pre-commit configuration.
  • Loading branch information
ktchu committed Jun 30, 2023
2 parents d37c694 + 612b85a commit 3bcd680
Show file tree
Hide file tree
Showing 8 changed files with 274 additions and 206 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:
types: [python]
exclude: ^spikes
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: end-of-file-fixer
Expand Down
11 changes: 11 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Velexi Python Package Cookiecutter Release Notes
================================================

-------------------------------------------------------------------------------
0.6.5 (2023-06-30)
==================
### Cookiecutter Template
* Update Makefile "clean" target.
* Update dependencies in pre-commit configuration.
* Update package dependencies.

### Cookiecutter Development
* Update package dependencies.

-------------------------------------------------------------------------------
0.6.4 (2023-06-20)
==================
Expand Down
99 changes: 62 additions & 37 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[tool.poetry]
name = "Velexi Python Project Cookiecutter"
version = "0.6.4"
version = "0.6.5"
description = "Template for Python projects"
license = "Apache-2.0"
authors = ["Kevin Chu <kevin@velexi.com>"]

[tool.poetry.dependencies]
python = "^3.9"
cookiecutter = "^2.1.1"
pre-commit = "^2.20.0"
black = "^22.10.0"
flake8 = "^5.0.4"
pre-commit = "^3.2"
black = "^23.0"
flake8 = "^6.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.__project_name}}/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:
types: [python]
exclude: ^spikes
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: check-docstring-first
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.__project_name}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ docs:
clean:
find . -type d -name "__pycache__" -delete # compiled python
find . -type f -name "*.py[co]" -delete # compiled python
rm -rf .cache # pytest
rm -rf .cache .pytest_cache # pytest
rm -rf .coverage .coverage.* coverage htmlcov coverage.xml # coverage
find . -name "*.log" -exec rm -f {} \; # log files
rm -rf ${DOCS_DIR} # generated API documentation
Expand Down
Loading

0 comments on commit 3bcd680

Please sign in to comment.