Skip to content

Commit e59a056

Browse files
committed
Merge remote-tracking branch 'origin/main'
# Conflicts: # pyroll/basic.py
2 parents dab6abe + 04fffe8 commit e59a056

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ authors = [
88
license = "BSD-3-Clause"
99
requires-python = ">=3.9"
1010
dependencies = [
11-
"pyroll-core ~= 2.1",
12-
"pyroll-cli ~= 2.1",
13-
"pyroll-report ~= 2.1",
14-
"pyroll-export ~= 2.1",
15-
"pyroll-integral-thermal ~= 2.1",
16-
"pyroll-lippmann-mahrenholz-force-torque ~= 2.0",
17-
"pyroll-wusatowski-spreading ~= 2.0",
18-
"pyroll-zouhar-contact ~= 2.1",
19-
"pyroll-freiberg-flow-stress ~= 2.0",
20-
"pyroll-lendl-equivalent-method ~= 2.0",
21-
"pyroll-linear-thermal-expansion ~= 2.1",
11+
"pyroll-core ~= 3.0",
12+
"pyroll-cli ~= 3.0",
13+
"pyroll-report ~= 3.0",
14+
"pyroll-export ~= 3.0",
15+
"pyroll-integral-thermal ~= 3.0",
16+
"pyroll-lippmann-mahrenholz-force-torque ~= 3.0",
17+
"pyroll-wusatowski-spreading ~= 3.0",
18+
"pyroll-zouhar-contact ~= 3.0",
19+
"pyroll-freiberg-flow-stress ~= 3.0",
20+
"pyroll-lendl-equivalent-method ~= 3.0",
21+
"pyroll-linear-thermal-expansion ~= 3.0",
2222
"plotly"
2323
]
2424
readme = "README.md"

pyroll/basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "2.1.2"
1+
VERSION = "3.0.0"
22

33
import pyroll.core as core
44
from pyroll.core import (

tests/test_solve.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ def test_solve(tmp_path: Path, caplog):
6565
rendered = report(sequence)
6666
print()
6767

68-
report_file.write_text(rendered)
68+
report_file.write_text(rendered, encoding="utf-8")
6969

7070
webbrowser.open(report_file.as_uri())

tests/test_solve_3rp_hex_75_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@ def test_solve_3rp_hexagon_75_2(tmp_path: Path, caplog):
130130
rendered = report(sequence)
131131
print()
132132

133-
report_file.write_text(rendered)
133+
report_file.write_text(rendered, encoding="utf-8")
134134

135135
webbrowser.open(report_file.as_uri())

tests/test_solve_imf_semi_continuous_8_mm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,6 @@ def test_solve_imf_semi_continuous_8_mm_pass_sequence(tmp_path: Path, caplog):
303303
rendered = report(sequence)
304304
print()
305305

306-
report_file.write_text(rendered)
306+
report_file.write_text(rendered, encoding="utf-8")
307307

308308
webbrowser.open(report_file.as_uri())

tests/test_solve_sag_kalibreur.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,6 @@ def test_solve_sag_kalibreur_pass_sequence(tmp_path: Path, caplog):
228228
rendered = report(sequence)
229229
print()
230230

231-
report_file.write_text(rendered)
231+
report_file.write_text(rendered, encoding="utf-8")
232232

233233
webbrowser.open(report_file.as_uri())

0 commit comments

Comments
 (0)