Skip to content

Commit c0bf3ec

Browse files
committed
self review
1 parent 7e5da83 commit c0bf3ec

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.github/workflows/check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,35 +11,35 @@ on:
1111
- cron: "0 0 * * 0"
1212

1313
jobs:
14-
test-py-cov:
14+
test-python-coverage:
1515
uses: ./.github/workflows/.hatch-run.yml
1616
with:
1717
job-name: "python-{0}"
1818
run-cmd: "hatch test --cover"
19-
lint-py:
19+
lint-python:
2020
uses: ./.github/workflows/.hatch-run.yml
2121
with:
2222
job-name: "python-{0}"
2323
run-cmd: "hatch run python:check"
24-
test-py-matrix:
24+
test-python:
2525
uses: ./.github/workflows/.hatch-run.yml
2626
with:
2727
job-name: "python-{0} {1}"
2828
run-cmd: "hatch test"
2929
runs-on: '["ubuntu-latest", "macos-latest", "windows-latest"]'
3030
python-version: '["3.9", "3.10", "3.11"]'
31-
test-docs:
31+
test-documentation:
3232
uses: ./.github/workflows/.hatch-run.yml
3333
with:
3434
job-name: "python-{0}"
3535
run-cmd: "hatch run docs:check"
3636
python-version: '["3.11"]'
37-
test-js:
37+
test-javascript:
3838
uses: ./.github/workflows/.hatch-run.yml
3939
with:
4040
job-name: "{1}"
4141
run-cmd: "hatch run javascript:test"
42-
lint-js:
42+
lint-javascript:
4343
uses: ./.github/workflows/.hatch-run.yml
4444
with:
4545
job-name: "{1}"

docs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9
1+
FROM python:3.11
22
WORKDIR /app/
33

44
RUN apt-get update

docs/source/about/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Unreleased
2020

2121
**Changed**
2222

23-
- Substitute ``react`` rendering on the client with ``preact``.
23+
- :pull:`1251` Substitute ``react`` rendering on the client with ``preact``.
2424

2525
v1.1.0
2626
------

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ description = "It's React, but in Python."
1212
readme = "README.md"
1313
keywords = ["react", "javascript", "reactpy", "component"]
1414
license = "MIT"
15-
authors = [{ name = "Ryan Morshead", email = "[email protected]" }]
15+
authors = [
16+
{ name = "Ryan Morshead", email = "[email protected]" },
17+
{ name = "Mark Bakhit", email = "[email protected]" },
18+
]
1619
requires-python = ">=3.9"
1720
classifiers = [
1821
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)