Skip to content

Commit e842cd9

Browse files
committed
more permissive
1 parent 0792a5a commit e842cd9

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

docs/en/introduction.ipynb

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/ja/introduction.ipynb

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

markdowns/en/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ def my_problem(problem: jm.DecoratedProblem):
126126
If you use `pip`, install `jijmodeling` with the following command:
127127

128128
```bash
129-
pip install 'jijmodeling>=2.0.0'
129+
pip install 'jijmodeling>=2.0.0, <3'
130130
```
131131

132132
If you are using uv, run:
133133

134134
<!-- FIXME: After the official release, drop the version spec >=2.0.0b8 -->
135135

136136
```bash
137-
uv add 'jijmodeling>=2.0.0'
137+
uv add 'jijmodeling>=2.0.0, <3'
138138
```
139139

140140
Note that `jijmodeling` requires Python 3.11 or later.

markdowns/ja/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,15 @@ def my_problem(problem: jm.DecoratedProblem):
124124
`pip`を使用している場合、次のコマンドで`jijmodeling`をインストールできます:
125125

126126
```bash
127-
pip install 'jijmodeling>=2.0.0'
127+
pip install 'jijmodeling>=2.0.0, <3'
128128
```
129129

130130
uv を利用している場合、以下のようにして依存関係に追加できます:
131131

132132
<!-- FIXME: 正式リリース後、バージョン指定 >=2.0.0b8 を落とす -->
133133

134134
```bash
135-
uv add 'jijmodeling>=2.0.0'
135+
uv add 'jijmodeling>=2.0.0, <3'
136136
```
137137

138138
`jijmodeling`の利用には Python 3.11 以上が必要であることに注意してください。

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Tutorial for JijModeling"
55
readme = "README.md"
66
requires-python = ">=3.11, <3.14"
77
dependencies = [
8-
"jijmodeling == 2.0.0",
8+
"jijmodeling>=2.0.0,<3",
99
"ommx-openjij-adapter >= 2.3.4, < 3.0.0",
1010
"ommx-pyscipopt-adapter >= 2.3.4, < 3.0.0",
1111
"ommx >= 2.3.4, < 3.0.0",

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)