Skip to content

Commit 7d069f0

Browse files
authored
Merge branch 'master' into lint_pkg_upgrade
2 parents 8ebfc20 + 16c3ca0 commit 7d069f0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
publish:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Set up Python
1414
uses: actions/setup-python@v4
1515
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Set up Python
1515
uses: actions/setup-python@v4
1616
with:

.github/workflows/test_full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
python-version: ['3.8', '3.9', '3.10', '3.11']
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python
1818
uses: actions/setup-python@v4
1919
with:
@@ -28,7 +28,7 @@ jobs:
2828
codestyle:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Set up Python
3333
uses: actions/setup-python@v4
3434
with:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ classifiers = [
4242
dependencies = [
4343
# exclude 0.11.2 and 0.11.3 due to https://github.com/sdispater/tomlkit/issues/225
4444
"tomlkit >=0.11.1,<1.0.0,!=0.11.2,!=0.11.3",
45-
"uvicorn[standard] == 0.22.0",
45+
"uvicorn[standard] == 0.23.2",
4646
"ellar >= 0.4.4"
4747
]
4848

@@ -58,9 +58,9 @@ Homepage = "https://eadwincode.github.io/ellar-cli/"
5858
test = [
5959
"pytest >=7.1.3,<8.0.0",
6060
"pytest-cov >=2.12.0,<5.0.0",
61-
"black ==23.10.1",
6261
"mypy == 1.6.1",
63-
"ruff ==0.1.3",
62+
"ruff ==0.1.4",
63+
"black ==23.10.1",
6464
"pytest-asyncio",
6565
"autoflake",
6666
]

0 commit comments

Comments
 (0)