Skip to content

Commit

Permalink
Merge branch 'bump_numpy' into rly-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jun 17, 2024
2 parents 798f1a3 + 686e9f4 commit a7c35e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/assess-file-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
echo "::set-output name=TESTING_CHANGED::false"
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo $file
if [[ $file == "src/nwbinspector/"* || $file == "requirements"* || $file == "setup.py" || $file == "tests/"* ]]
if [[ $file == "src/nwbinspector/"* || $file == "requirements.txt" || $file == "setup.py" || $file == "tests/"* ]]
then
echo "Source changed"
echo "::set-output name=SOURCE_CHANGED::true"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ click
tqdm
isodate
numpy>=1.20.0,<1.21.0;python_version<'3.8'
numpy>=1.22.0;python_version>='3.8' # PyNWB usually has some upper bound here, though
numpy>=1.22.0,<2.0.0;python_version>='3.8'

0 comments on commit a7c35e3

Please sign in to comment.