Skip to content

Commit 9f5b430

Browse files
committed
Preparation for 3.0.0 release
1 parent c9b535e commit 9f5b430

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,12 @@
99
with multiple different Python versions on multiple workers in parallel.
1010
This project is inspired by [tox-travis](https://github.com/tox-dev/tox-travis).
1111

12-
This branch is under active development to support tox v4.
13-
We're planning to release the stable version by the end of 2022.
14-
1512
## Versions and Compatibility
1613
Currently, tox-gh-actions supports both tox 3 and 4, but users need to install the appropriate version by following the table below.
1714

1815
| tox | tox-gh-actions | Supported by tox-gh-actions | Branch |
1916
|-----|----------------|-----------------------------|-----------------------------------------------------------|
20-
| 4.x | 3.x | Yes (beta) | [master](https://github.com/ymyzk/tox-gh-actions) |
17+
| 4.x | 3.x | Yes (stable) | [master](https://github.com/ymyzk/tox-gh-actions) |
2118
| 3.x | 2.x | Yes (stable) | [tox3](https://github.com/ymyzk/tox-gh-actions/tree/tox3) |
2219

2320
- [Features](#features)
@@ -132,8 +129,7 @@ jobs:
132129
- name: Install dependencies
133130
run: |
134131
python -m pip install --upgrade pip
135-
python -m pip install tox
136-
python -m pip install --pre tox-gh-actions
132+
python -m pip install tox tox-gh-actions
137133
- name: Test with tox
138134
run: tox
139135
```
@@ -265,8 +261,7 @@ jobs:
265261
- name: Install dependencies
266262
run: |
267263
python -m pip install --upgrade pip
268-
python -m pip install tox
269-
python -m pip install --pre tox-gh-actions
264+
python -m pip install tox tox-gh-actions
270265
- name: Test with tox
271266
run: tox
272267
env:
@@ -318,6 +313,8 @@ The major version can be also incremented when we require a new version of tox.
318313
This project tries not to introduce backward incompatibles changes as much as possible so that users don't need to
319314
update their project's configuration too frequently.
320315

316+
tox-gh-actions 3.x may drop support of unsupported Python 3.y versions in the future without bumping its major version.
317+
321318
## Understanding Behavior of tox-gh-actions
322319
### How tox-gh-actions Works
323320
See [ARCHITECTURE.md](./ARCHITECTURE.md) for more details.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ platforms = any
1616
license = MIT
1717
license_file = LICENSE
1818
classifiers =
19-
Development Status :: 4 - Beta
19+
Development Status :: 5 - Production/Stable
2020
Framework :: tox
2121
Intended Audience :: Developers
2222
License :: OSI Approved :: MIT License

0 commit comments

Comments
 (0)