We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f764d29 commit 1c769ccCopy full SHA for 1c769cc
2 files changed
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# CHANGELOG
2
3
+## v1.9.1 (2023-05-08)
4
+
5
+- Fixes a replacement typo in setup.py for `package_data`
6
+- Bumps all dependencies
7
8
## v1.9.0 (2022-11-02)
9
10
- Removes the `coveralls` dev dependency and instead updates `pytest-cov` to v4 which now supports `lcov` generation
setup.py
@@ -9,11 +9,11 @@
]
11
DEV_REQUIREMENTS = [
12
- 'black == 22.*',
13
- 'build == 0.7.*',
14
- 'flake8 == 4.*',
+ 'black == 23.*',
+ 'build == 0.10.*',
+ 'flake8 == 6.*',
15
'isort == 5.*',
16
- 'mypy == 0.942',
+ 'mypy == 1.2',
17
'pytest == 7.*',
18
'pytest-cov == 4.*',
19
'twine == 4.*',
@@ -35,7 +35,7 @@
35
36
),
37
package_data={
38
- 'PROJECT_NAME_URL': [
+ 'project_name': [
39
'py.typed',
40
41
},
0 commit comments