Skip to content

Commit dee7e1d

Browse files
committed
Fix quote issue
1 parent af3a574 commit dee7e1d

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
python-version: [3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1212

1313
steps:
1414
- uses: actions/checkout@v4

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,15 @@ Change log
1111

1212
- Change local development setup to use Poetry_.
1313

14+
- Testsuite and code quality checks are done through Github Actions.
15+
16+
- Code quality and formatting utilises ruff_.
17+
18+
- Removed ``typing_extensions`` as a dependency, as it's no longer required with
19+
having Python 3.9+ as a requirement.
1420

1521
.. _Poetry: https://python-poetry.org
22+
.. _ruff: https://astral.sh/ruff
1623

1724

1825
7.4.2 (6 February 2023)

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ qr = 'qrcode.console_scripts:main'
4242
[tool.poetry.dependencies]
4343
python = "^3.9"
4444
colorama = {version = "*", platform = "win32"}
45-
pypng = "*"
45+
pypng = {version = "*", optional = true}
4646
pillow = {version = ">=9.1.0", optional = true}
4747

4848
[tool.poetry.extras]
4949
pil = ["pillow"]
50+
png = ["pypng"]
5051

5152
[tool.poetry.group.dev.dependencies]
5253
pytest = {version = "*"}

0 commit comments

Comments
 (0)