Skip to content

Commit 47550c7

Browse files
committed
Fix up build script and tag 2.0.1
1 parent 474d82a commit 47550c7

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented here.
44

5-
## [3.0.0] - 2024-05-14
5+
## [2.0.1] - 2024-12-16
66
### Added
77
- Type hints for most functions
88
### Changed

pypi_upload.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22

33
rm -rf build dist
4-
python setup.py sdist bdist_wheel
5-
twine upload -r pypi dist/python*
4+
python -m build
5+
python -m twine upload dist/*

tests/helpscout/test_client.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
from functools import partial
2-
from unittest import main, TestCase
3-
from unittest.mock import call, MagicMock, patch, PropertyMock
2+
from unittest import TestCase, main
3+
from unittest.mock import MagicMock, PropertyMock, call, patch
44

55
from helpscout.client import EmbeddedKey, HelpScout, HelpScoutEndpointRequester
6-
from helpscout.exceptions import (HelpScoutException,
7-
HelpScoutAuthenticationException,
8-
HelpScoutRateLimitExceededException)
6+
from helpscout.exceptions import (
7+
HelpScoutAuthenticationException,
8+
HelpScoutException,
9+
HelpScoutRateLimitExceededException,
10+
)
911

1012

1113
class TestClient(TestCase):

0 commit comments

Comments
 (0)