Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed May 8, 2023
1 parent f764d29 commit 1c769cc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## v1.9.1 (2023-05-08)

- Fixes a replacement typo in setup.py for `package_data`
- Bumps all dependencies

## v1.9.0 (2022-11-02)

- Removes the `coveralls` dev dependency and instead updates `pytest-cov` to v4 which now supports `lcov` generation
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
]

DEV_REQUIREMENTS = [
'black == 22.*',
'build == 0.7.*',
'flake8 == 4.*',
'black == 23.*',
'build == 0.10.*',
'flake8 == 6.*',
'isort == 5.*',
'mypy == 0.942',
'mypy == 1.2',
'pytest == 7.*',
'pytest-cov == 4.*',
'twine == 4.*',
Expand All @@ -35,7 +35,7 @@
]
),
package_data={
'PROJECT_NAME_URL': [
'project_name': [
'py.typed',
]
},
Expand Down

0 comments on commit 1c769cc

Please sign in to comment.