Skip to content

Commit 518888a

Browse files
committed
fix workflow
1 parent 3042f44 commit 518888a

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
python -m pip install --upgrade pip
3030
python -m pip install flake8 pytest poetry
31-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31+
poetry install
3232
- name: Lint with flake8
3333
run: |
3434
# stop the build if there are Python syntax errors or undefined names
@@ -37,6 +37,5 @@ jobs:
3737
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3838
- name: Test with pytest
3939
run: |
40-
poetry install
4140
cd tests
42-
pytest .
41+
pytest . --cov=../pyechonext

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
commit 3042f4491b2734699533ee8785243759c05f9257
2+
Author: Alexeev Bronislav <[email protected]>
3+
Date: Fri Jul 4 07:13:42 2025 +0700
4+
5+
fix workflow
6+
7+
commit 41c92b5c0a983eec5b163ddc4aaec0672ce6d999
8+
Merge: 7e98e35 e092d62
9+
Author: Alexeev Bronislav <[email protected]>
10+
Date: Fri Jul 4 07:12:13 2025 +0700
11+
12+
Merge branch 'main' into dev
13+
14+
commit 7e98e35db53dbbc2d5a6fcfc61cb12d9d9296aa3
15+
Author: Alexeev Bronislav <[email protected]>
16+
Date: Fri Jul 4 07:11:51 2025 +0700
17+
18+
fix docs and code style
19+
20+
commit e092d62dcddbb65d6e56db0a8e3d5e096a39577c
21+
Author: Alexeev Bronislav <[email protected]>
22+
Date: Fri Jul 4 07:07:20 2025 +0700
23+
24+
Create python-package.yml
25+
126
commit 6dbeb8a8e2ddef13157443b85ebb3fe337641415
227
Author: Alexeev Bronislav <[email protected]>
328
Date: Fri Jul 4 07:03:26 2025 +0700

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "LGPL-2.1"
77
readme = "README.md"
88

99
[tool.poetry.dependencies]
10-
python = ">=3.10,<4.0"
10+
python = ">=3.12,<4.0"
1111
rich = "^14.0.0"
1212
gunicorn = "^23.0"
1313
pysocks = "^1.7"

0 commit comments

Comments
 (0)