Skip to content

Commit 9deebc9

Browse files
Python >=3.10, Updated deps accordingly (numpy and pandas) (#427)
* Enabled pushing timeseries data from local run * Exposing memory metrics on local run * Allowing to specify different host on local runner * Bumping version from 0.10.24 to 0.10.25 * Python >=3.10, Updated deps accordingly (numpy and pandas) * Fixed docker/requests issue (https://stackoverflow.com/questions/78518146/docker-compose-fails-with-error-urllib3-exceptions-urlschemeunknown-not-suppor) * Fixed unit tests for local and remote run * Updated tox and tox-docker to address protocol issue * Updated tox and tox-docker to address protocol issue * black format * Ignore flake8 E721 * Fixed tox and docker issues. added docker dev dependency
1 parent 1ad4fdb commit 9deebc9

24 files changed

+1091
-503
lines changed

.flake8

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
max-line-length = 120
33
max-complexity = 10
44
select = C,E,F,W,B,B950
5-
ignore = E203,E501,W503,E722,B001,C901
5+
ignore = E203,E501,W503,E721,E722,B001,C901
66
exclude =
77
.git,
88
test_*,

.github/workflows/tox.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
pytest:
1010
strategy:
1111
matrix:
12-
python-version: [ '3.9', '3.10' ]
12+
python-version: [ '3.10', '3.11', '3.12' ]
1313
fail-fast: false
1414
env:
1515
ACTIONS_ALLOW_UNSECURE_COMMANDS: true

dev_requirements.txt

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
click==8.0.4
2-
black==22.3.0
3-
flake8==4.0.1
1+
click==8.1.7
2+
black==24.4.2
3+
flake8==7.1.0
44
flynt~=0.69.0
55
isort==5.10.1
66
mock==4.0.3
77
packaging>=20.4
8-
pytest==6.2.5
9-
pytest-timeout==2.0.1
10-
pytest-asyncio>=0.16.0
11-
tox==3.24.4
12-
tox-docker==4.0.0a2
13-
invoke==1.6.0
14-
pytest-cov>=3.0.0
8+
pytest==8.2.2
9+
pytest-timeout==2.3.1
10+
pytest-asyncio>=0.23.7
11+
tox>=4.16.0
12+
tox-docker>=5.0.0
13+
invoke==2.2.0
14+
pytest-cov>=5.0.0
1515
vulture>=2.3.0
1616
ujson>=4.2.0
17-
wheel>=0.30.0
17+
wheel>=0.43.0
18+
docker>=7.1.0

0 commit comments

Comments
 (0)