Skip to content

Commit

Permalink
Freeze and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TrisCC committed Jul 29, 2024
1 parent 413eec6 commit 74b1b33
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: deploy-docs
name: deploy-docs
on:
push:
branches:
branches:
- main
permissions:
contents: write
Expand All @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: actions/cache@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -28,4 +28,4 @@ jobs:
- name: Test with tox
run: tox
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
19 changes: 10 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,32 @@ classifiers = [
]
requires-python = ">=3.10"
dependencies = [
"ConfigSpace==0.7.1",
"SMAC==2.0.2",
"result==0.9.0",
"xdg-base-dirs==6.0.0",
"xdg-base-dirs==6.0.1",
"onnxruntime==1.14.1",
"pandas==2.0.1",
"pandas==2.2.0",
"numpy==1.24.3",
"onnx==1.14.0",
"swig==4.1.1.post1",
]

[project.optional-dependencies]
dev = [
"black",
"isort",
"black==24.4.2",
"isort==5.13.2",
"tox",
"pytest==7.3.2",
"pre-commit",
"flake8",
"mypy",
"flake8==7.1.0",
"mypy==1.10.0",
"bumpver",
"coverage",
"coverage==7.5.3",
"mkdocs",
"pydocstyle",
"types-PyYAML",
"pytest-lazy-fixture",
"types-PyYAML==6.0.12.20240311",
"pytest-lazy-fixture==0.6.3",
]

[project.scripts]
Expand Down
16 changes: 8 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ package = wheel
wheel_build_env = .pkg
deps =
pytest==7.3.2
flake8
black
isort
pydocstyle
mypy
coverage
types-PyYAML
pytest-lazy-fixture
flake8==7.1.0
black==24.4.2
isort==5.13.2
pydocstyle==6.3.0
mypy==1.10.0
coverage==7.5.3
types-PyYAML==6.0.12.20240311
pytest-lazy-fixture==0.6.3
passenv = CODECOV_*
commands =
coverage run -m pytest -s -v -m "not gpu and not verifier" {tty:--color=yes} {posargs}
Expand Down

0 comments on commit 74b1b33

Please sign in to comment.