Skip to content

Commit 2dd14d3

Browse files
authored
Merge pull request #149 from yozachar/workshop
chore: monthly updates for Nov'23
2 parents 2aab719 + e644272 commit 2dd14d3

3 files changed

Lines changed: 12 additions & 10 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,9 @@ cython_debug/
163163
# VSCode
164164
.vscode/
165165

166-
# asdf
166+
# asdf/rtx
167167
.tool-versions
168+
.rtx.toml
168169

169170
# ruff
170171
.ruff_cache

CONTRIBUTING.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
![python_ver](https://img.shields.io/badge/Python-%3E%3D3.11-blue.svg)
3+
![python_ver](https://img.shields.io/badge/Python-%3E%3D3.12-blue.svg)
44

55
> First off, thank you! Please follow along.
66
@@ -47,17 +47,18 @@ $ podman-compose -p waka-readme -f ./docker-compose.yml down
4747
4848
1. Inside the cloned folder run the following commands to install dependencies
4949

50-
```console
50+
```sh
5151
$ python -m venv .venv
5252
$ . ./.venv/bin/activate
5353
$ python -m pip install .
54+
# ... install decencies ...
5455
```
5556

5657
to activate virtual environment & install dependencies.
5758

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

60-
```console
61+
```sh
6162
(.venv)$ python -m unittest discover # run tests
6263
(.venv)$ python -m main --dev # execute program in dev mode
6364
```

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ classifiers = [
1515
"Programming Language :: Python",
1616
"Typing :: Typed",
1717
]
18-
requires-python = ">=3.11"
19-
dependencies = ["faker>=19.11.0", "pygithub>=2.1.1", "requests>=2.31.0"]
18+
requires-python = ">=3.12"
19+
dependencies = ["faker>=19.13.0", "pygithub>=2.1.1", "requests>=2.31.0"]
2020

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

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

4141
####################
4242
# Configurations #
@@ -47,11 +47,11 @@ exclude_dirs = [".github", "tests", ".venv", ".vscode"]
4747

4848
[tool.black]
4949
line-length = 100
50-
target-version = ["py311"]
50+
target-version = ["py312"]
5151

5252
[tool.pyright]
5353
exclude = ["**/__pycache__", ".venv/"]
54-
pythonVersion = "3.11"
54+
pythonVersion = "3.12"
5555
pythonPlatform = "All"
5656
typeCheckingMode = "strict"
5757

@@ -72,7 +72,7 @@ select = [
7272
"D",
7373
]
7474
line-length = 100
75-
target-version = "py311"
75+
target-version = "py312"
7676
extend-exclude = ["**/__pycache__"]
7777

7878
[tool.ruff.isort]

0 commit comments

Comments
 (0)