Skip to content

Commit 1a489c7

Browse files
committed
Release Toolium 3.8.0
1 parent ad0aeef commit 1a489c7

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: build
22

33
on: [push, pull_request]
44

5+
env:
6+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
7+
58
jobs:
69
test:
710
runs-on: ubuntu-latest
@@ -11,9 +14,9 @@ jobs:
1114
fail-fast: false
1215

1316
steps:
14-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v5
1518
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v3
19+
uses: actions/setup-python@v5
1720
with:
1821
python-version: ${{ matrix.python-version }}
1922
- name: Install dependencies
@@ -47,7 +50,7 @@ jobs:
4750
runs-on: ubuntu-latest
4851
steps:
4952
- name: Set up Python 3.10
50-
uses: actions/setup-python@v3
53+
uses: actions/setup-python@v5
5154
with:
5255
python-version: '3.10'
5356
- name: Install dependencies

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Toolium Changelog
44
v3.8.0
55
------
66

7-
*Release date: In development*
7+
*Release date: 2026-03-13*
88

99
- Add pyproject.toml file for packaging and publishing Toolium
1010
- Configure ruff for linting and formatting files, replacing flake8 and black

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.8.0.dev0
1+
3.8.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ exclude_lines = [
102102
"raise AssertionError",
103103
"raise NotImplementedError",
104104
"if 0:",
105-
"if __name__ == .__main__.:",
105+
"if __name__ == '__main__':",
106106
]
107107

108108
[tool.ruff]

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ mock~=5.0
55
requests-mock~=1.10
66
Pygments~=2.14
77
build~=1.3
8-
wheel~=0.40
8+
wheel~=0.46,>=0.46.2
99
twine~=6.2
1010
behave~=1.3 # behave tests
1111
importlib_metadata~=8.7

0 commit comments

Comments
 (0)