Skip to content

Commit c762eea

Browse files
authored
freeze numpy <2.0 & fix ci+docs (#482)
* freeze `numpy <2.0` * with `twine==5.1.1` * docs req.
1 parent 3047693 commit c762eea

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/releasing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Create package 📦
2626
run: |
27-
pip install "twine==4.0.2" setuptools wheel
27+
pip install "twine==5.1.1" setuptools wheel
2828
python setup.py sdist bdist_wheel
2929
ls -lh dist/
3030
twine check dist/*

requirements/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
torch >=1.11.0
2-
numpy >1.20.0
2+
numpy >1.20.0, <2.0
33
pandas >=1.1.5
44
scikit-learn >=1.3.0
55
pytorch-lightning >=2.0.0, <2.3.0

requirements/dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
wget
22
bump2version ==1.0.1
33
# coverage >=4.5.4
4-
mkdocs-material >=9.1.0, <9.6.0
4+
mkdocs-material ==9.5.*
55
ipython[notebook] >8.0, <9.0
6-
mkdocstrings[python] >=0.23.0, <0.24.0
7-
mknotebooks >=0.8.0, <0.9.0
6+
mkdocstrings[python] ==0.26.*
7+
mknotebooks ==0.8.*
88
pytest >=5.3.2
99
pytest-runner >=5.1
1010
torch_optimizer

0 commit comments

Comments
 (0)