rbx.cp 0.17.7__py3-none-any.whl → 0.17.8__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.7'
1
+ __version__ = '0.17.8'
@@ -22,9 +22,8 @@ def scrape_boca(into_path: pathlib.Path):
22
22
 
23
23
  def work(run: BocaRun):
24
24
  scraper.download_run(
25
- run.run_number,
26
- run.site_number,
27
- pathlib.Path(into_path) / run.problem_shortname,
25
+ run,
26
+ pathlib.Path(into_path),
28
27
  name=f'{run.run_number}-{run.site_number}-{run.outcome.short_name().lower()}',
29
28
  )
30
29
 
@@ -4,7 +4,6 @@ import hashlib
4
4
  import os
5
5
  import pathlib
6
6
  import re
7
- import shutil
8
7
  import time
9
8
  import typing
10
9
  from typing import Any, Callable, List, NoReturn, Optional, Tuple, Union
@@ -635,7 +634,7 @@ class BocaScraper:
635
634
  )
636
635
  final_path = into_dir / filename
637
636
  final_path.parent.mkdir(parents=True, exist_ok=True)
638
- shutil.move(detailed_run.code, final_path)
637
+ final_path.write_text(detailed_run.code)
639
638
  return final_path
640
639
 
641
640
  def _set_starttime(
@@ -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.7"
4
+ min_version: "0.17.8"
5
5
  uri: "rsalesc/rbx/rbx/resources/presets/default"
6
6
  problem: "problem"
7
7
  contest: "contest"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rbx.cp
3
- Version: 0.17.7
3
+ Version: 0.17.8
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=LhXO4wjASxNtbb9ULVbPs3Z2KD8fcjHapdbGc9c2q90,23
2
+ rbx/__version__.py,sha256=YJo_Aah7IjrrnqgQ0geT3JVZmcyVLd5hsYZZzqkenbQ,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
@@ -93,8 +93,8 @@ rbx/box/tooling/boca/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
93
93
  rbx/box/tooling/boca/debug_utils.py,sha256=Rs1ptMWsy32jl_DJZASeOfyqh8HCJdhIXufdbxpE_oM,4732
94
94
  rbx/box/tooling/boca/main.py,sha256=knl1rpaHIwA63KkzMJMZQrejzMpbTPBhYqGx1IpuNm4,289
95
95
  rbx/box/tooling/boca/manual_scrape.py,sha256=iuNtOHrWczdaWNNRMKGYkgr-wSwgtjZedpz5-sX5IRQ,724
96
- rbx/box/tooling/boca/scrape.py,sha256=q1BoVstfLbw5CwB9e2hQnseBv6HQMnXq2z_tk18ui6M,1024
97
- rbx/box/tooling/boca/scraper.py,sha256=ShckY5M-IyMY0o7aA5IWoFVSA5-N7Tadnx_-9J9s7UQ,33756
96
+ rbx/box/tooling/boca/scrape.py,sha256=7p4DW0smqX0_6o-C1KFIAve3YI7zfIZkP0Y9kAgHDLE,956
97
+ rbx/box/tooling/boca/scraper.py,sha256=XwKeRI5Dn9dBHRVA2CXu9qIjsxkAsi5bPDpVwdr7fRk,33740
98
98
  rbx/box/tooling/converter.py,sha256=cTRUuZ7GToMuAUo6VE7tOtaeNkXHJZE29me0yopvvsY,2544
99
99
  rbx/box/tooling/main.py,sha256=uj6XHjJMF3nyb4enbbTK8XbUAuiRLT_RP1kVwSMqV5E,2003
100
100
  rbx/box/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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=wItvMn_dh0Gyd7o_fJd6MtaafVQ7Jwihk6moGYYrETA,520
204
+ rbx/resources/presets/default/preset.rbx.yml,sha256=j9TYuDEd4NVbVg1Q7KcFl0Af8Rt_vIcw-3mhNmKi_bQ,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
@@ -223,8 +223,8 @@ rbx/resources/templates/rbx.h,sha256=0AZds9R0PmuPgnlTENb33Y81LW0LlnmOJFaoN8oG3Yo
223
223
  rbx/resources/templates/template.cpp,sha256=xXWpWo7fa7HfmPNqkmHcmv3i46Wm0ZL-gPmkRfGvLn4,317
224
224
  rbx/testing_utils.py,sha256=vNNdaytowJfuopszVHeFzVtHWlPfipPW4zpqCOvdZKU,2908
225
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,,
226
+ rbx_cp-0.17.8.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
227
+ rbx_cp-0.17.8.dist-info/METADATA,sha256=TtEtoCRE5ToPgHA0W3hbbVtDWN1utV9NXYYdBN0mM5w,4799
228
+ rbx_cp-0.17.8.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
229
+ rbx_cp-0.17.8.dist-info/entry_points.txt,sha256=Gw2_BZ5Jon61biaH_ETbAQGXy8fR5On9gw2U4A1erpo,40
230
+ rbx_cp-0.17.8.dist-info/RECORD,,