We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dab6abe + 04fffe8 commit e59a056Copy full SHA for e59a056
pyproject.toml
@@ -8,17 +8,17 @@ authors = [
8
license = "BSD-3-Clause"
9
requires-python = ">=3.9"
10
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",
+ "pyroll-core ~= 3.0",
+ "pyroll-cli ~= 3.0",
+ "pyroll-report ~= 3.0",
+ "pyroll-export ~= 3.0",
+ "pyroll-integral-thermal ~= 3.0",
+ "pyroll-lippmann-mahrenholz-force-torque ~= 3.0",
+ "pyroll-wusatowski-spreading ~= 3.0",
+ "pyroll-zouhar-contact ~= 3.0",
+ "pyroll-freiberg-flow-stress ~= 3.0",
+ "pyroll-lendl-equivalent-method ~= 3.0",
+ "pyroll-linear-thermal-expansion ~= 3.0",
22
"plotly"
23
]
24
readme = "README.md"
pyroll/basic.py
@@ -1,4 +1,4 @@
1
-VERSION = "2.1.2"
+VERSION = "3.0.0"
2
3
import pyroll.core as core
4
from pyroll.core import (
tests/test_solve.py
@@ -65,6 +65,6 @@ def test_solve(tmp_path: Path, caplog):
65
rendered = report(sequence)
66
print()
67
68
- report_file.write_text(rendered)
+ report_file.write_text(rendered, encoding="utf-8")
69
70
webbrowser.open(report_file.as_uri())
tests/test_solve_3rp_hex_75_2.py
@@ -130,6 +130,6 @@ def test_solve_3rp_hexagon_75_2(tmp_path: Path, caplog):
130
131
132
133
134
135
tests/test_solve_imf_semi_continuous_8_mm.py
@@ -303,6 +303,6 @@ def test_solve_imf_semi_continuous_8_mm_pass_sequence(tmp_path: Path, caplog):
303
304
305
306
307
308
tests/test_solve_sag_kalibreur.py
@@ -228,6 +228,6 @@ def test_solve_sag_kalibreur_pass_sequence(tmp_path: Path, caplog):
228
229
230
231
232
233
0 commit comments