Skip to content

Commit 70e338d

Browse files
authored
Merge pull request #30 from CyberAgentAILab/fix/numpy-version
Update required numpy version
2 parents 94b86f8 + cc4c6c9 commit 70e338d

File tree

5 files changed

+544
-518
lines changed

5 files changed

+544
-518
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,16 @@ jobs:
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

25-
- name: Install pipenv
26-
run: |
27-
python -m pip install --upgrade pip
28-
pip install pipenv
29-
3025
- name: Install dependencies
3126
run: |
32-
pipenv install --dev --python ${{ matrix.python-version }}
27+
python -m pip install --upgrade pip
28+
pip install .
29+
pip install -r requirements-dev.txt
3330
3431
- name: Lint with ruff
3532
run: |
36-
pipenv run lint
33+
ruff check .
3734
3835
- name: Run unit tests
3936
run: |
40-
pipenv run unittest
37+
python -m unittest

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
numpy = "~=1.26"
7+
numpy = ">=1.26"
88
matplotlib = "~=3.7"
99
scipy = "~=1.13.1"
1010

0 commit comments

Comments
 (0)