Skip to content

Commit

Permalink
make
Browse files Browse the repository at this point in the history
  • Loading branch information
SermetPekin committed Jul 26, 2024
1 parent 6b6b0e5 commit 9f0bf2a
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
Binary file modified .github/.DS_Store
Binary file not shown.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ ignore_*/
ignore/
ignore*
scratches/

.DS_Store
.github/.DS_Store
*.DS_Store

#PY PACKAGES --------------------------------

Expand Down
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ check:
ruff check
tox run

.PHONY: clean
.PHONY: security
security:
python3.11 -m pip install safety
python3.11 -m safety check --ignore=70612



clean:
rm -rf $(VENV)
find . -type f -name "*.pyc" -delete
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pytest = ">=7.0.0"
pygments = ">=2.6.0"
commonmark = ">=0.9.0"
typing-extensions = { version = ">=4.0.0, <5.0", python = "<3.9" }
black = "^24.3"
black = ">=24.3.0"
mypy = "^0.971"
pytest-cov = "^3.0.0"
attrs = "^21.4.0"
Expand All @@ -48,4 +48,4 @@ jupyter = ["ipywidgets"]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
evdspy = 'evdspy:console_main'
evdspy = 'evdspy:console_main'
3 changes: 2 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ openpyxl>=3.0.10
numpy>=1.5.0
pytest>=8.1.0
ruff>=0.5.1
tox
tox
black>=24.3.0
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ six>=1.16.0
urllib3>=1.26.12
openpyxl>=3.0.10
numpy>=1.5.0
pytest>=8.1.0
pytest>=8.1.0
black>=24.3.0

0 comments on commit 9f0bf2a

Please sign in to comment.