Skip to content

Commit 2934b0b

Browse files
committed
Merge branch 'master' into provider-conformance-realization
2 parents 5964b65 + 275d496 commit 2934b0b

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

hypothesis-python/docs/changelog.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ Hypothesis 6.x
1818

1919
.. include:: ../RELEASE.rst
2020

21+
.. _v6.140.2:
22+
23+
--------------------
24+
6.140.2 - 2025-09-23
25+
--------------------
26+
27+
The automatic switch to the CI :class:`settings profile <hypothesis.settings>` now works under :pypi:`tox` (for ``tox >= 4.30.0``).
28+
2129
.. _v6.140.1:
2230

2331
--------------------

hypothesis-python/src/hypothesis/_settings.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,9 @@ def __repr__(self) -> str:
294294
# see https://adamj.eu/tech/2020/03/09/detect-if-your-tests-are-running-on-ci
295295
# initially from https://github.com/tox-dev/tox/blob/e911788a/src/tox/util/ci.py
296296
_CI_VARS = {
297-
"CI": None, # GitHub Actions, Travis CI, and AppVeyor
297+
"CI": None, # various, including GitHub Actions, Travis CI, and AppVeyor
298+
# see https://github.com/tox-dev/tox/issues/3442
299+
"__TOX_ENVIRONMENT_VARIABLE_ORIGINAL_CI": None,
298300
"TF_BUILD": "true", # Azure Pipelines
299301
"bamboo.buildKey": None, # Bamboo
300302
"BUILDKITE": "true", # Buildkite

hypothesis-python/src/hypothesis/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
99
# obtain one at https://mozilla.org/MPL/2.0/.
1010

11-
__version_info__ = (6, 140, 1)
11+
__version_info__ = (6, 140, 2)
1212
__version__ = ".".join(map(str, __version_info__))

0 commit comments

Comments
 (0)