Skip to content

Commit

Permalink
Fix commands running with fixed python and packages
Browse files Browse the repository at this point in the history
  • Loading branch information
n-gao committed Oct 11, 2024
1 parent d05092f commit e9bfdd8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
version: "0.4.20"
enable-cache: true
- name: Setup virtual env
run: uv sync
run: uv sync -p ${{ matrix.python-version }} --resolution ${{ matrix.resolution }}
- name: Setup seml config
run: uv run seml configure --host=localhost --port=27017 --database=seml --username=seml --password=seml
- name: Add
Expand Down
3 changes: 2 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ repos:
- gitignore_parser>=0.1.11
- setuptools>=69.2.0
- importlib_resources>=5.7.0
- typing_extensions>=4.10
- typing_extensions>=4.10; python_version < '3.13'
- typing_extensions>=4.12; python_version >= '3.13'
- deepdiff>=7.0.1
- ruff>=0.6.1
- pytest>=8.3.2
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ dependencies = [
"gitignore_parser>=0.1.11",
"setuptools>=69.2.0",
"importlib_resources>=5.7.0",
"typing_extensions>=4.10",
"typing_extensions>=4.10; python_version < '3.13'",
"typing_extensions>=4.12; python_version >= '3.13'",
"deepdiff>=7.0.1",
]

Expand Down

0 comments on commit e9bfdd8

Please sign in to comment.