Skip to content

Commit b0ea0bc

Browse files
committed
Depend on Asphalt master
1 parent eeebf1a commit b0ea0bc

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ jobs:
2424
- name: Start external services
2525
run: docker compose up -d
2626
- name: Install dependencies
27-
run: |
28-
pip install git+https://github.com/asphalt-framework/asphalt.git
29-
pip install -e .[test]
27+
run: pip install -e .[test]
3028
- name: Test with pytest
3129
run: coverage run -m pytest -v
3230
- name: Generate coverage report

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ classifiers = [
2525
]
2626
requires-python = ">=3.9"
2727
dependencies = [
28-
"asphalt ~= 4.8",
28+
"asphalt @ git+https://github.com/asphalt-framework/asphalt",
2929
"aiokafka >= 0.10",
3030
]
3131
dynamic = ["version"]
@@ -64,7 +64,7 @@ extend-select = [
6464
"I", # isort
6565
"ISC", # flake8-implicit-str-concat
6666
"PGH", # pygrep-hooks
67-
"RUF100", # unused noqa (yesqa)
67+
"RUF", # unused noqa (yesqa)
6868
"UP", # pyupgrade
6969
"W", # pycodestyle warnings
7070
]

0 commit comments

Comments
 (0)