-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from henriquesebastiao/dev
🔧 fix: Removing class scheduling for the second two months and adding…
- Loading branch information
Showing
4 changed files
with
30 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "Unipando" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
description = "Um bot para Discord para auxiliar estudantes do curso de Ciência da Computação da UNIP." | ||
authors = ["Henrique Sebastião <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -16,11 +16,10 @@ psutil = "^5.9.8" | |
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
taskipy = "^1.12.2" | ||
taskipy = "^1.13.0" | ||
blue = "^0.9.1" | ||
ruff = "^0.4.3" | ||
ruff = "^0.4.10" | ||
isort = "^5.13.2" | ||
bandit = "^1.7.8" | ||
radon = "^6.0.1" | ||
|
||
[build-system] | ||
|
@@ -43,9 +42,8 @@ ruff = "ruff check ." | |
blue = "blue --check . --diff" | ||
isort = "isort --check --diff ." | ||
radon = "radon cc ./bot -a -na" | ||
bandit = "bandit -r ./bot" | ||
lint = "task ruff && task blue && task isort" | ||
format = 'blue . && isort .' | ||
ready = "task lint && task radon && task bandit && task export-requirements" | ||
ready = "task lint && task radon && task export-requirements" | ||
export-requirements = "rm requirements.txt && poetry export -f requirements.txt --output requirements.txt --without-hashes --without dev" | ||
run="python ./bot/main.py" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters