Skip to content

Commit 1c769cc

Browse files
committed
fix: typo
1 parent f764d29 commit 1c769cc

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## v1.9.1 (2023-05-08)
4+
5+
- Fixes a replacement typo in setup.py for `package_data`
6+
- Bumps all dependencies
7+
38
## v1.9.0 (2022-11-02)
49

510
- Removes the `coveralls` dev dependency and instead updates `pytest-cov` to v4 which now supports `lcov` generation

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
]
1010

1111
DEV_REQUIREMENTS = [
12-
'black == 22.*',
13-
'build == 0.7.*',
14-
'flake8 == 4.*',
12+
'black == 23.*',
13+
'build == 0.10.*',
14+
'flake8 == 6.*',
1515
'isort == 5.*',
16-
'mypy == 0.942',
16+
'mypy == 1.2',
1717
'pytest == 7.*',
1818
'pytest-cov == 4.*',
1919
'twine == 4.*',
@@ -35,7 +35,7 @@
3535
]
3636
),
3737
package_data={
38-
'PROJECT_NAME_URL': [
38+
'project_name': [
3939
'py.typed',
4040
]
4141
},

0 commit comments

Comments
 (0)