File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -108,10 +108,18 @@ def deps(c, system=False):
108
108
if "uv" in line :
109
109
print ("Removing uv from dev-requirements.txt for win-arm64" )
110
110
continue
111
+ if "robotframework-crypto" in line :
112
+ print (
113
+ "Removing robotframework-crypto from dev-requirements.txt for win-arm64"
114
+ )
115
+ continue
116
+ if "rellu" in line :
117
+ print ("Removing rellu from dev-requirements.txt for win-arm64" )
118
+ continue
111
119
lines .append (line )
112
120
Path ("Browser/dev-requirements.txt" ).open ("w" ).writelines (lines )
113
121
package_manager_dev_cmd = f"pip install -r Browser/dev-requirements.txt"
114
- package_manager_deps_cmd = f"pip install -r pyproject.toml "
122
+ package_manager_deps_cmd = f"pip install . "
115
123
if IN_CI and package_manager == "uv" :
116
124
print (f"Install packages to Python found from { sys .executable } ." )
117
125
package_manager_dev_cmd = f"{ package_manager_dev_cmd } --python { sys .executable } "
@@ -121,7 +129,7 @@ def deps(c, system=False):
121
129
c .run (package_manager_dev_cmd )
122
130
print ("Install package dependencies." )
123
131
c .run (package_manager_deps_cmd )
124
- if os . environ . get ( "CI" ) :
132
+ if IN_CI :
125
133
shutil .rmtree (str (NODE_MODULES ), ignore_errors = True )
126
134
127
135
if _sources_changed ([ROOT_DIR / "./package-lock.json" ], npm_deps_timestamp_file ):
You can’t perform that action at this time.
0 commit comments