Skip to content

Commit

Permalink
chore: monthly updates for Nov'23
Browse files Browse the repository at this point in the history
  • Loading branch information
yozachar committed Nov 8, 2023
1 parent 2aab719 commit 3dd2f83
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,9 @@ cython_debug/
# VSCode
.vscode/

# asdf
# asdf/rtx
.tool-versions
.rtx.toml

# ruff
.ruff_cache
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,18 @@ $ podman-compose -p waka-readme -f ./docker-compose.yml down
1. Inside the cloned folder run the following commands to install dependencies

```console
```sh
$ python -m venv .venv
$ . ./.venv/bin/activate
$ python -m pip install .
# ... install decencies ...
```

to activate virtual environment & install dependencies.

2. To test or execute the program in development, run:

```console
```sh
(.venv)$ python -m unittest discover # run tests
(.venv)$ python -m main --dev # execute program in dev mode
```
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ classifiers = [
"Programming Language :: Python",
"Typing :: Typed",
]
requires-python = ">=3.11"
dependencies = ["faker>=19.11.0", "pygithub>=2.1.1", "requests>=2.31.0"]
requires-python = ">=3.12"
dependencies = ["faker>=19.13.0", "pygithub>=2.1.1", "requests>=2.31.0"]

[project.urls]
Homepage = "https://github.com/athul/waka-readme"
Expand All @@ -36,7 +36,7 @@ extra = ["loguru>=0.7.2", "python-dotenv>=1.0.0"]
#############################

[tool.pdm.dev-dependencies]
tooling = ["bandit>=1.7.5", "black>=23.10.0", "ruff>=0.1.1", "pyright>=1.1.332"]
tooling = ["bandit>=1.7.5", "black>=23.11.0", "ruff>=0.1.4", "pyright>=1.1.334"]

####################
# Configurations #
Expand Down

0 comments on commit 3dd2f83

Please sign in to comment.