File tree 2 files changed +17
-2
lines changed
2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ Version 1.0.8 (2023-06-02)
5
+ -------------
6
+
4
7
* Move the main requirements.txt file to pyperformance/requirements
5
- so that dependabot can only run on that one file.
8
+ so that dependabot can only run on that one file
9
+ * Update dependencies of benchmarks not to specify setuptools
10
+ * On older versions of Python, skip benchmarks that use features
11
+ introduced in newer Python versions
12
+ * Support ``--inherit-environ `` when reusing a venv
13
+ * Use tomllib/tomli over toml
14
+ * Update MANIFEST.in to include cert files for asyncio_tcp_ssl benchmark
15
+ * Fix undefined variable issue when raising VenvPipInstallFailedError
16
+ * Add mypy config; run mypy in CI
17
+ * Fix typo of str.partition from _pyproject_toml.py
B5D5
18
+ * Add version of Richards benchmark that uses super()
19
+ * Add a benchmark for runtime-checkable protocols
20
+ * Extend async tree benchmarks to cover eager task execution
6
21
7
22
Version 1.0.7 (2023-04-22)
8
23
-------------
Original file line number Diff line number Diff line change 2
2
import sys
3
3
4
4
5
- VERSION = (1 , 0 , 7 )
5
+ VERSION = (1 , 0 , 8 )
6
6
__version__ = '.' .join (map (str , VERSION ))
7
7
8
8
You can’t perform that action at this time.
0 commit comments