Skip to content

Commit 666f003

Browse files
authored
fix: path to dependency files should be directory (#730)
1 parent b056ed7 commit 666f003

File tree

7 files changed

+3
-3
lines changed

7 files changed

+3
-3
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
interval: "daily"
77

88
- package-ecosystem: pip
9-
directory: "/tests/rf_versions_matrix/requirements_rf7.txt"
9+
directory: "/tests/rf_versions_matrix/rf7/"
1010
schedule:
1111
interval: "daily"
1212

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
python -m pip install --upgrade pip
4747
pip install --upgrade setuptools
48-
pip install -r tests/rf_versions_matrix/requirements_${{ matrix.rf-version }}.txt
48+
pip install -r tests/rf_versions_matrix/${{ matrix.rf-version }}/requirements.txt
4949
pip install .[dev]
5050
- name: Run unit tests with coverage
5151
run:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
include_package_data=True,
4242
python_requires=">=3.8",
4343
install_requires=[
44-
"robotframework>=4.0,<8.0",
44+
"robotframework>=4.0,<7.2",
4545
"click==8.1.*",
4646
"colorama>=0.4.3,<0.4.7",
4747
"pathspec>=0.9.0,<0.12.2",

0 commit comments

Comments
 (0)