Skip to content

Commit

Permalink
Towards Py3 migration: Move requirements.txt (#1441)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbubley committed May 5, 2020
1 parent 2dc1c91 commit 95b936c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -342,7 +342,7 @@ gulp.task('ext_watch_rebuild', callback => {
});

gulp.task('watch', () => {
$.watch('requirements.txt', () => {
$.watch(`${paths.main}/requirements.txt`, () => {
return gulp.series('pip')();
});
$.watch('package.json', () => {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion run.py
Expand Up @@ -65,7 +65,7 @@
DIR_LIB = os.path.join(DIR_MAIN, 'lib')
DIR_LIBX = os.path.join(DIR_MAIN, 'libx')
FILE_LIB = '%s.zip' % DIR_LIB
FILE_REQUIREMENTS = 'requirements.txt'
FILE_REQUIREMENTS = os.path.join(DIR_MAIN, 'requirements.txt')
FILE_PIP_GUARD = os.path.join(DIR_TEMP, 'pip.guard')

FILE_VENV = os.path.join(DIR_VENV, 'Scripts', 'activate.bat') \
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.txt
@@ -1,2 +1,2 @@
-r requirements.txt
-r main/requirements.txt
webtest==2.0.35

0 comments on commit 95b936c

Please sign in to comment.