rbx.cp 0.17.6__py3-none-any.whl → 0.17.7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
rbx/__version__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.17.6'
1
+ __version__ = '0.17.7'
rbx/box/schema.py CHANGED
@@ -106,6 +106,11 @@ class ExpectedOutcome(AutoEnum):
106
106
 
107
107
  Especially useful for environments where TLE and RTE are indistinguishable."""
108
108
 
109
+ JUDGE_FAILED = alias('judge failed', 'jf') # type: ignore
110
+ """Expected outcome for solutions that finish with a judge failed verdict.
111
+
112
+ Only useful for checker tests."""
113
+
109
114
  def style(self) -> str:
110
115
  if self == ExpectedOutcome.ANY:
111
116
  return 'orange'
@@ -161,6 +166,8 @@ class ExpectedOutcome(AutoEnum):
161
166
  return outcome in {Outcome.RUNTIME_ERROR} or outcome.is_slow()
162
167
  if self == ExpectedOutcome.OUTPUT_LIMIT_EXCEEDED:
163
168
  return outcome == Outcome.OUTPUT_LIMIT_EXCEEDED
169
+ if self == ExpectedOutcome.JUDGE_FAILED:
170
+ return outcome == Outcome.JUDGE_FAILED
164
171
  return False
165
172
 
166
173
  def get_matches(self) -> List[Outcome]:
@@ -335,8 +335,11 @@ class StupidSandbox(SandboxBase):
335
335
  else:
336
336
  raise RuntimeError(f'Unknown pid: {pid}')
337
337
 
338
- for p in (interactor, program, solution_tee, interactor_tee):
338
+ for p in (interactor, program):
339
339
  p.close()
340
+ if should_tee:
341
+ for p in (solution_tee, interactor_tee):
342
+ p.close()
340
343
 
341
344
  return typing.cast(Tuple[SandboxLog, SandboxLog], tuple(results))
342
345
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  # yaml-language-server: $schema=https://rsalesc.github.io/rbx/schemas/Preset.json
3
3
  name: "default"
4
- min_version: "0.17.6"
4
+ min_version: "0.17.7"
5
5
  uri: "rsalesc/rbx/rbx/resources/presets/default"
6
6
  problem: "problem"
7
7
  contest: "contest"
rbx/utils.py CHANGED
@@ -52,7 +52,7 @@ def get_upgrade_command(
52
52
  parsed_version = (
53
53
  semver.VersionInfo.parse(version) if isinstance(version, str) else version
54
54
  ) or get_semver()
55
- return f'pipx install --upgrade {PIP_NAME}@{parsed_version.major}'
55
+ return f'uv tool install {PIP_NAME}@{parsed_version.major}'
56
56
 
57
57
 
58
58
  def check_version_compatibility_between(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rbx.cp
3
- Version: 0.17.6
3
+ Version: 0.17.7
4
4
  Summary:
5
5
  Author: Roberto Sales
6
6
  Requires-Python: >=3.9.1,<4.0.0
@@ -1,5 +1,5 @@
1
1
  rbx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- rbx/__version__.py,sha256=659MIXoktqvdpSoUwgo79H2UvpA7j13iYjBPkBKDdjQ,23
2
+ rbx/__version__.py,sha256=LhXO4wjASxNtbb9ULVbPs3Z2KD8fcjHapdbGc9c2q90,23
3
3
  rbx/annotations.py,sha256=_TkLhgZWiUyon3bonHwUo03ls1jY8LwgcR4bVgtgnc0,3519
4
4
  rbx/autoenum.py,sha256=cusv8ClXRlDVvhZ8eDrtYcL_2peXlHugAey_ht8roXk,12025
5
5
  rbx/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -61,7 +61,7 @@ rbx/box/remote.py,sha256=hCdiZSmh6Y1vnSEwLZ_gtAMYV-WLVlU3iVnvcObRpRc,5274
61
61
  rbx/box/retries.py,sha256=BZsi4sYBjm3VK5zb_pBQSYQuKo3ZntmtEFoVPZHg4QI,4982
62
62
  rbx/box/sanitizers/issue_stack.py,sha256=nHtF8bksTIbvOlmDEy72SoXnXfQyIDBHU_3NOn-X1Ss,3534
63
63
  rbx/box/sanitizers/warning_stack.py,sha256=3-5quni5NWMs2k2NI6MWVFR_ec8BeGFVZ29xyifZ_dY,2882
64
- rbx/box/schema.py,sha256=3rkRkBiyZw0Dq3GMKX1zh5BE4-aSURFZogAQGoYqVck,20006
64
+ rbx/box/schema.py,sha256=Q4rDXssTVsmf8kc_0tvZ1SnyXauYi-XubV2WiLBHIBY,20292
65
65
  rbx/box/setter_config.py,sha256=vyZbsbgkjelZOblMLX5A1j4CLqPNQkrv83IZr_3-46Y,5301
66
66
  rbx/box/solutions.py,sha256=Id5X9711p5VX0kZfVXpj_klADPz8k5GvQsV3oXvhgrU,52848
67
67
  rbx/box/state.py,sha256=MMf3DvfQji0jKEliCHct2Tpp_0epL1tvP8HbHNArQIc,166
@@ -135,7 +135,7 @@ rbx/grading/judge/digester.py,sha256=gtOIe_iL4PEWA7OKelW1gjSI-nBvbOpDPJGV8VQyjSg
135
135
  rbx/grading/judge/program.py,sha256=VJ-ItHGsumAvR7YWYtnmAFairfAIu_ASHfyhu7bqvRw,10671
136
136
  rbx/grading/judge/sandbox.py,sha256=e9Nstf9EoFGE0OBQgqcz5BD5hYDegIeGP5dWVZSA29Q,21342
137
137
  rbx/grading/judge/sandboxes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
- rbx/grading/judge/sandboxes/stupid_sandbox.py,sha256=aKJyIVhnxisOZRy3NMwQqSXTpC-WW8GJuEi06SKbmSk,11693
138
+ rbx/grading/judge/sandboxes/stupid_sandbox.py,sha256=0Pw-Jvh2A7Jbm5mpx3r4mojP9HgFkDhSREWFuS3ixKs,11765
139
139
  rbx/grading/judge/sandboxes/tee.py,sha256=fLulB8fV7k5cO-ikRgURpsETrvr6LoUSjGxFM3GZs5U,672
140
140
  rbx/grading/judge/storage.py,sha256=8o3pz0Ansanc5t23XGtshJHCD_q4dIR_XorpeVEvg1g,15621
141
141
  rbx/grading/limits.py,sha256=zCyRTEtUQFd1RKL_fFKl3qSiRSIDCalBaSLlt1yhi0Y,896
@@ -201,7 +201,7 @@ rbx/resources/presets/default/contest/statement/info.rbx.tex,sha256=Wz8Tbmi2lPWM
201
201
  rbx/resources/presets/default/contest/statement/instructions.tex,sha256=JG_eR13ukZgEahrrmrbg40H8cUzpoUE8QLocihN-fZ8,2414
202
202
  rbx/resources/presets/default/contest/statement/logo.png,sha256=RLNYmZoc-BR6AZKkmr4UEg3h01YeFzvy604jMAQC7aA,414485
203
203
  rbx/resources/presets/default/env.rbx.yml,sha256=quSPG5Xs9KroYLATNLPNtORLGRWtrLLt2Fx81T1enAM,1692
204
- rbx/resources/presets/default/preset.rbx.yml,sha256=uyZz6ro_cHHxGDQe22zmpOfpb_-zHcp1fx7aGecWd5A,520
204
+ rbx/resources/presets/default/preset.rbx.yml,sha256=wItvMn_dh0Gyd7o_fJd6MtaafVQ7Jwihk6moGYYrETA,520
205
205
  rbx/resources/presets/default/problem/.gitignore,sha256=1rt95y9Q7ZHIQn28JyZQUdD5zkpRosjAl9ZqoQmX2cE,149
206
206
  rbx/resources/presets/default/problem/gens/gen.cpp,sha256=rn6sGRjZ1sFE1Rq02r6488iquY9xTrutcvLv4d1sohA,178
207
207
  rbx/resources/presets/default/problem/manual_tests/samples/000.in,sha256=w66OEtCJGqjUNj8cJrqgImgGVm8W_OlIUtF255ds-ow,4
@@ -222,9 +222,9 @@ rbx/resources/presets/default/shared/problem_template.rbx.tex,sha256=KDibf4LtUio
222
222
  rbx/resources/templates/rbx.h,sha256=0AZds9R0PmuPgnlTENb33Y81LW0LlnmOJFaoN8oG3Yo,3638
223
223
  rbx/resources/templates/template.cpp,sha256=xXWpWo7fa7HfmPNqkmHcmv3i46Wm0ZL-gPmkRfGvLn4,317
224
224
  rbx/testing_utils.py,sha256=vNNdaytowJfuopszVHeFzVtHWlPfipPW4zpqCOvdZKU,2908
225
- rbx/utils.py,sha256=VXAqDewr2UvLtC-JxLPMd3dt26oFu1vtf5bLvbFTYEI,11362
226
- rbx_cp-0.17.6.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
227
- rbx_cp-0.17.6.dist-info/METADATA,sha256=tuH4FwzQfe95iMusJLIElbUDuL2VCkJYjhmIKg6jagY,4799
228
- rbx_cp-0.17.6.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
229
- rbx_cp-0.17.6.dist-info/entry_points.txt,sha256=Gw2_BZ5Jon61biaH_ETbAQGXy8fR5On9gw2U4A1erpo,40
230
- rbx_cp-0.17.6.dist-info/RECORD,,
225
+ rbx/utils.py,sha256=ua7qzt5rrpTKgEZXC6cKVDVklOReIYWL6sNsSWkrWE4,11355
226
+ rbx_cp-0.17.7.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
227
+ rbx_cp-0.17.7.dist-info/METADATA,sha256=9RJ8D--x5pfsbzJ7dm7TaJdhAJYc2AXarRMHazUQuRw,4799
228
+ rbx_cp-0.17.7.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
229
+ rbx_cp-0.17.7.dist-info/entry_points.txt,sha256=Gw2_BZ5Jon61biaH_ETbAQGXy8fR5On9gw2U4A1erpo,40
230
+ rbx_cp-0.17.7.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.2
2
+ Generator: poetry-core 2.1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any