Skip to content

Commit 6e53bbb

Browse files
authored
Merge branch 'master' into feature/env
2 parents 5f110cd + dfb3476 commit 6e53bbb

File tree

9 files changed

+51
-48
lines changed

9 files changed

+51
-48
lines changed

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111

1212
- name: Set up Python
13-
uses: actions/setup-python@v2
13+
uses: actions/setup-python@v4
1414
with:
1515
python-version: 3.x
1616

.github/workflows/pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v3
1313

1414
- name: Set up Python
15-
uses: actions/setup-python@v1
15+
uses: actions/setup-python@v4
1616

1717
- name: Install dependencies
1818
run: |

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212

1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v3
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v4
1818
with:
19-
python-version: 3.x
19+
python-version: '3.8'
2020

2121
- name: Install dependencies
2222
run: pip install .[dev]

.github/workflows/verify.yml

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,43 +10,52 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v1
13+
- uses: actions/checkout@v3
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v4
1717

1818
- name: Install dependencies
1919
run: pip3 install -U git+https://github.com/${{ github.repository }}.git@master
2020

2121

2222
# required only if you want to verify Haskell code
2323
- name: Install dependencies (Haskell)
24-
uses: actions/setup-haskell@v1
24+
uses: haskell/actions/setup@v2
25+
with:
26+
ghc-version: '8.8.4'
27+
cabal-version: '3.0.0.0'
2528

2629
# required only if you want to verify Java code
2730
- name: Install dependencies (Java)
28-
uses: actions/setup-java@v1
31+
uses: actions/setup-java@v3
2932
with:
30-
java-version: 11
33+
distribution: temurin
34+
java-version: '11'
3135

3236
# required only if you want to verify C# script files
33-
- uses: actions/setup-dotnet@v1
37+
- uses: actions/setup-dotnet@v3
3438
with:
3539
dotnet-version: '3.1.101'
3640
- name: Install dependencies (C#)
37-
run: dotnet tool install -g dotnet-script
41+
run: dotnet tool install --global dotnet-script --version 1.4.0
3842

3943
# required only if you want to verify Go code
4044
- name: Install dependencies (Go)
41-
uses: actions/setup-go@v2
45+
uses: actions/setup-go@v4
4246

4347
# required only if you want to verify Ruby code
4448
- name: Install dependencies (Ruby)
45-
uses: actions/setup-ruby@v1
49+
uses: ruby/setup-ruby@v1
50+
with:
51+
ruby-version: '3.0'
4652

4753
# required only if you want to verify Nim code
4854
- name: Install dependencies (Nim)
49-
run: sudo apt install nim
55+
uses: jiro4989/setup-nim-action@v1
56+
with:
57+
nim-version: '1.6.14'
58+
repo-token: ${{ secrets.GITHUB_TOKEN }}
5059

5160
- name: Set up Rust (1.42.0)
5261
uses: actions-rs/toolchain@v1

.verify-helper/timestamps.remote.json

Lines changed: 21 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,23 @@
11
{
2-
"Examples2/Haskell/HelloWorld.test.hs": "2020-09-17 18:45:17 +0900",
3-
"example.test.cpp": "2019-11-24 04:01:18 +0900",
4-
"examples/awk/circle.test.awk": "2020-09-17 18:25:50 +0900",
5-
"examples/csharpscript/helloworld.test.csx": "2020-02-16 04:29:07 +0900",
6-
"examples/csharpscript/segment_tree.point_set_range_composite.test.csx": "2020-02-16 04:32:52 +0900",
7-
"examples/csharpscript/segment_tree.range_minimum_query.test.csx": "2020-02-16 04:32:52 +0900",
8-
"examples/csharpscript/segment_tree.range_sum_query.test.csx": "2020-02-16 04:32:52 +0900",
9-
"examples/debug/gcc_only.test.cpp": "2020-02-28 16:21:27 +0900",
10-
"examples/debug/include_relative.test.cpp": "2020-02-28 16:21:27 +0900",
11-
"examples/debug/precision.test.cpp": "2020-02-28 16:21:27 +0900",
12-
"examples/debug/relative_path.test.cpp": "2020-03-19 16:25:51 +0900",
13-
"examples/debug/yukicoder.test.cpp": "2020-02-28 16:21:27 +0900",
14-
"examples/go/helloworld.test.go": "2020-09-17 19:04:09 +0900",
15-
"examples/java/HelloWorld_test.java": "2020-09-17 19:34:20 +0900",
16-
"examples/nim/union_find_tree_aoj_test.nim": "2020-09-17 18:25:50 +0900",
17-
"examples/nim/union_find_tree_yosupo_test.nim": "2020-09-17 18:25:50 +0900",
18-
"examples/python/hello_world.test.py": "2020-09-17 18:25:50 +0900",
19-
"examples/python/union_find_aoj.test.py": "2020-09-17 18:25:50 +0900",
20-
"examples/python/union_find_yosupo.test.py": "2020-09-17 18:25:50 +0900",
21-
"examples/rust/verification/src/bin/aizu-online-judge-itp1-1-a.rs": "2020-11-30 13:30:54 +0900",
22-
"examples/rust/verification/src/bin/library-checker-aplusb.rs": "2020-11-30 13:30:54 +0900",
23-
"examples/segment_tree.point_set_range_composite.test.cpp": "2020-09-14 23:28:24 +0900",
24-
"examples/segment_tree.range_minimum_query.test.cpp": "2020-09-14 23:28:24 +0900",
25-
"examples/segment_tree.range_sum_query.test.cpp": "2020-09-14 23:28:24 +0900",
26-
"examples/union_find_tree.aoj.test.cpp": "2019-12-16 05:18:36 +0900",
27-
"examples/union_find_tree.yosupo.test.cpp": "2019-12-16 05:18:36 +0900"
2+
"Examples2/Haskell/HelloWorld.test.hs": "2023-08-12 00:27:19 +0900",
3+
"example.test.cpp": "2023-08-12 00:27:19 +0900",
4+
"examples/awk/circle.test.awk": "2023-08-12 00:27:19 +0900",
5+
"examples/debug/gcc_only.test.cpp": "2023-08-12 00:27:19 +0900",
6+
"examples/debug/include_relative.test.cpp": "2023-08-12 00:27:19 +0900",
7+
"examples/debug/precision.test.cpp": "2023-08-12 00:27:19 +0900",
8+
"examples/debug/relative_path.test.cpp": "2023-08-12 00:27:19 +0900",
9+
"examples/debug/yukicoder.test.cpp": "2023-08-12 00:27:19 +0900",
10+
"examples/java/HelloWorld_test.java": "2023-08-12 00:27:19 +0900",
11+
"examples/nim/union_find_tree_aoj_test.nim": "2023-08-12 00:27:19 +0900",
12+
"examples/nim/union_find_tree_yosupo_test.nim": "2023-08-12 00:27:19 +0900",
13+
"examples/python/hello_world.test.py": "2023-08-12 00:27:19 +0900",
14+
"examples/python/union_find_aoj.test.py": "2023-08-12 00:27:19 +0900",
15+
"examples/python/union_find_yosupo.test.py": "2023-08-12 00:27:19 +0900",
16+
"examples/rust/verification/src/bin/aizu-online-judge-itp1-1-a.rs": "2023-08-12 00:27:19 +0900",
17+
"examples/rust/verification/src/bin/library-checker-aplusb.rs": "2023-08-12 00:27:19 +0900",
18+
"examples/segment_tree.point_set_range_composite.test.cpp": "2023-08-12 00:27:19 +0900",
19+
"examples/segment_tree.range_minimum_query.test.cpp": "2023-08-12 00:27:19 +0900",
20+
"examples/segment_tree.range_sum_query.test.cpp": "2023-08-12 00:27:19 +0900",
21+
"examples/union_find_tree.aoj.test.cpp": "2023-08-12 00:27:19 +0900",
22+
"examples/union_find_tree.yosupo.test.cpp": "2023-08-12 00:27:19 +0900"
2823
}

README.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
$ pip3 install online-judge-verify-helper
2626
```
2727

28-
Python のバージョンは 3.6 以上が必要です。
28+
Python のバージョンは 3.8 以上が必要です。
2929

3030
#### verify 自動実行
3131

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Please read this: <https://online-judge-tools.github.io/verification-helper/inst
2525
$ pip3 install online-judge-verify-helper
2626
```
2727

28-
Python 3.6 or above is required.
28+
Python 3.8 or above is required.
2929

3030
#### Automating the verification
3131

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ classifiers =
77
Intended Audience :: Developers
88
License :: OSI Approved :: MIT License
99
Operating System :: OS Independent
10-
Programming Language :: Python :: 3.5
11-
Programming Language :: Python :: 3.6
10+
Programming Language :: Python :: 3.8
1211
Topic :: Internet :: WWW/HTTP
1312
Topic :: Software Development
1413
Topic :: Utilities

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
url='https://github.com/kmyk/online-judge-verify-helper',
1010
license='MIT License',
1111
description='',
12-
python_requires='>=3.6',
12+
python_requires='>=3.8',
1313
install_requires=[
1414
'colorlog',
1515
'pyyaml',

0 commit comments

Comments
 (0)