Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 747f1c6

Browse files
committed
Prepared release 2023.01.2
Updated project dependencies. From this moment all dependencies are dev-only.
1 parent d3936e9 commit 747f1c6

File tree

4 files changed

+64
-41
lines changed

4 files changed

+64
-41
lines changed

CHANGELOG.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
#################
2+
Release 2023.01.2
3+
#################
4+
5+
********************
6+
Brick Wall Challenge
7+
********************
8+
9+
Added brick wall challenge. Original problem set is published at:
10+
https://leetcode.com/problems/brick-wall/
11+
12+
**************
13+
Project Itself
14+
**************
15+
16+
- Moved project dependencies to dev-section. Project has dev-deps only.
17+
- From now pip package manage is supported as well.
18+
- Removed legacy documentation section from README
19+
120
###############
221
Release 2023-01
322
###############

poetry.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "problem-sets"
7-
version = "2022.11.dev"
8-
description = "python training course - problem sets"
7+
version = "2023.01.1"
8+
description = "Challenges and solutions for the Python training course"
99
license = "MIT"
1010
authors = [
1111
"Serhii Horodilov <sgorodil@gmail.com>"
@@ -20,7 +20,11 @@ keywords = [
2020
"challenge",
2121
"educational",
2222
"tutorial",
23-
"training"
23+
"training",
24+
"basic",
25+
"oop",
26+
"dynamic",
27+
"programming",
2428
]
2529
classifiers = [
2630
"License :: OSI Approved :: MIT License",
@@ -45,13 +49,13 @@ packages = [
4549

4650
[tool.poetry.dependencies]
4751
python = "^3.9"
52+
53+
[tool.poetry.dev-dependencies]
4854
pytest-cov = "^4.0.0"
4955
mypy = "^0.991"
5056
pylint = "^2.15.5"
5157
tox = "^4.0"
5258

53-
[tool.poetry.dev-dependencies]
54-
5559
[tool.poetry.scripts]
5660
wrw_game = "wrw_game.__main__:run"
5761

requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
astroid==2.13.2; python_full_version >= "3.7.2"
1+
astroid==2.13.3; python_full_version >= "3.7.2"
22
attrs==22.2.0; python_version >= "3.7"
3-
cachetools==5.2.1; python_version >= "3.7" and python_version < "4.0"
3+
cachetools==5.3.0; python_version >= "3.7" and python_version < "4.0"
44
chardet==5.1.0; python_version >= "3.7"
55
colorama==0.4.6; sys_platform == "win32" and python_full_version >= "3.7.2" and (python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.7.0" and python_version >= "3.7") and (python_version >= "3.7" and python_full_version < "3.0.0" and sys_platform == "win32" or sys_platform == "win32" and python_version >= "3.7" and python_full_version >= "3.7.0")
6-
coverage==7.0.5; python_version >= "3.7"
6+
coverage==7.1.0; python_version >= "3.7"
77
dill==0.3.6
88
distlib==0.3.6; python_version >= "3.7"
99
exceptiongroup==1.1.0; python_version < "3.11" and python_version >= "3.7"
1010
filelock==3.9.0; python_version >= "3.7"
1111
iniconfig==2.0.0; python_version >= "3.7"
12-
isort==5.11.4; python_full_version >= "3.7.2"
12+
isort==5.12.0; python_full_version >= "3.8.0"
1313
lazy-object-proxy==1.9.0; python_version >= "3.7" and python_full_version >= "3.7.2"
1414
mccabe==0.7.0; python_version >= "3.6" and python_full_version >= "3.7.2"
1515
mypy-extensions==0.4.3; python_version >= "3.7"
@@ -18,12 +18,12 @@ packaging==23.0; python_version >= "3.7"
1818
platformdirs==2.6.2; python_version >= "3.7" and python_full_version >= "3.7.2"
1919
pluggy==1.0.0; python_version >= "3.7"
2020
pylint==2.15.10; python_full_version >= "3.7.2"
21-
pyproject-api==1.4.0; python_version >= "3.7"
21+
pyproject-api==1.5.0; python_version >= "3.7"
2222
pytest-cov==4.0.0; python_version >= "3.6"
2323
pytest==7.2.1; python_version >= "3.7"
2424
tomli==2.0.1; python_version < "3.11" and python_version >= "3.7" and python_full_version >= "3.7.2" and python_full_version <= "3.11.0a6"
2525
tomlkit==0.11.6; python_version >= "3.6" and python_full_version >= "3.7.2"
26-
tox==4.2.8; python_version >= "3.7"
26+
tox==4.4.3; python_version >= "3.7"
2727
typing-extensions==4.4.0; python_version < "3.10" and python_full_version >= "3.7.2" and python_version >= "3.7"
2828
virtualenv==20.17.1; python_version >= "3.7"
2929
wrapt==1.14.1

0 commit comments

Comments
 (0)