Skip to content

Commit 1199ab3

Browse files
committed
Release 2024.10.09
1 parent 6f295da commit 1199ab3

File tree

2 files changed

+50
-3
lines changed

2 files changed

+50
-3
lines changed

CHANGELOG.md

+49-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,53 @@
11
# Changelog
22

3+
## 2024.10.09
4+
5+
6+
This release adds explicit support for Python 3.13 and drops support for running Nox itself under Python 3.7. Note that you can still use 3.7 in your Nox sessions, we just dropped support for installing & running `nox` itself in 3.7.
7+
8+
We'd like to thank the following folks who conributed to this release:
9+
- @edgarrmondragon
10+
- @ember91
11+
- @henryiii
12+
- @hmd101
13+
- @KasperZutterman
14+
- @living180
15+
- @mayeut
16+
- @saucoide
17+
- @Wurstnase
18+
19+
New features:
20+
* Allow setting tags on parametrized sessions by @living180 in https://github.com/wntrblm/nox/pull/832
21+
* Added support for `uv`-installed pythons by @saucoide in https://github.com/wntrblm/nox/pull/842
22+
* Added `session.install_and_run_script` by @henryiii in https://github.com/wntrblm/nox/pull/847
23+
24+
Bugfixes:
25+
* Updated type annotation of `stderr` parameter to make it optional by @edgarrmondragon in https://github.com/wntrblm/nox/pull/835
26+
* Removed `add_timestamp` from `noxfile.options` by @Wurstnase in https://github.com/wntrblm/nox/pull/856
27+
28+
Documentation:
29+
* Added warning about uv and local packages by @henryiii in https://github.com/wntrblm/nox/pull/830
30+
* Fixed contribution guidelines by @Wurstnase in https://github.com/wntrblm/nox/pull/850
31+
* Fixed typos by @ember91 in https://github.com/wntrblm/nox/pull/839
32+
* Fixed typoss in cookbook by @hmd101 in https://github.com/wntrblm/nox/pull/837
33+
* Added missing cookbook recipe snippet imports by @KasperZutterman in https://github.com/wntrblm/nox/pull/853
34+
* Cleaned up `dev` recipe by @henryiii in https://github.com/wntrblm/nox/pull/862
35+
* Added note about `uv reinstall` by @henryiii in https://github.com/wntrblm/nox/pull/863
36+
* Added `uv sync` example by @henryiii in https://github.com/wntrblm/nox/pull/864
37+
38+
Internal changes:
39+
* Use default action tests for macos-14 by @mayeut in https://github.com/wntrblm/nox/pull/824
40+
* Added 3.13 to the action defaults by @henryiii in https://github.com/wntrblm/nox/pull/846
41+
* Dropped Python 3.7 by @henryiii in https://github.com/wntrblm/nox/pull/822
42+
* Included 3.13 in classifiers by @henryiii in https://github.com/wntrblm/nox/pull/851
43+
* Use `uv` if available in action by @henryiii in https://github.com/wntrblm/nox/pull/831
44+
* Run tests with Python 3.13 by @edgarrmondragon in https://github.com/wntrblm/nox/pull/834
45+
* Updated `macos-latest` to `macos-14` by @henryiii in https://github.com/wntrblm/nox/pull/821
46+
* Use `miniforge` by @henryiii in https://github.com/wntrblm/nox/pull/854
47+
* Use `astral-sh/setup-uv` by @henryiii in https://github.com/wntrblm/nox/pull/859
48+
* Dropped PyPy 3.9 from test matrix by @henryiii in https://github.com/wntrblm/nox/pull/858
49+
50+
351
## 2024.04.15
452

553
We'd like to thank the following folks who contributed to this release:
@@ -14,8 +62,7 @@ New features:
1462
* Added the ability to use `None` to remove environment variables by @henryiii in https://github.com/wntrblm/nox/pull/812
1563
* Added support for skipping sessions by default using `default=False` by @henryiii in https://github.com/wntrblm/nox/pull/810
1664

17-
## Bugfixes
18-
65+
Bugfixes:
1966
* Use static arguments instead of `**kwargs` by @henryiii in https://github.com/wntrblm/nox/pull/815
2067
* Do not depend on `pipx` in Nox GitHub action by @mayeut in https://github.com/wntrblm/nox/pull/768
2168
* Disallow `UV_SYSTEM_PYTHON` by @henryiii in https://github.com/wntrblm/nox/pull/817

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires = [
66

77
[project]
88
name = "nox"
9-
version = "2024.04.15"
9+
version = "2024.10.09"
1010
description = "Flexible test automation."
1111
readme = "README.md"
1212
keywords = [

0 commit comments

Comments
 (0)