Skip to content

Commit

Permalink
Bump dependency versions and clean up docstrings (#81)
Browse files Browse the repository at this point in the history
* Bump cryptography (42.0.5 -> 43.0.1)

* Add docstring to top level init

* Update makefile clean commands

* Update top level init docstring
  • Loading branch information
jessicasyu authored Sep 20, 2024
1 parent 186b2d5 commit 338cee5
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 45 deletions.
23 changes: 12 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
.PHONY: clean build docs

clean: # clean all build, python, and testing files
rm -fr build/
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
rm -rf build/
rm -rf dist/
rm -rf .eggs/
find . -name '*.egg-info' -exec rm -rf {} +
find . -name '*.egg' -exec rm -rf {} +
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
rm -fr .tox/
rm -fr .coverage
rm -fr coverage.xml
rm -fr htmlcov/
rm -fr .pytest_cache
rm -fr .mypy_cache
rm -rf .tox/
rm -rf .coverage
rm -rf coverage.xml
rm -rf htmlcov/
rm -rf .pytest_cache
rm -rf .mypy_cache
rm -rf .ruff_cache

build: # run tox tests and lint
tox
Expand Down
63 changes: 29 additions & 34 deletions poetry.lock

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

1 change: 1 addition & 0 deletions src/arcade_collection/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Collection of tasks for working with ARCADE."""

0 comments on commit 338cee5

Please sign in to comment.