Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/spellcheck-settings.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
matrix:
- name: Markdown
expect_match: false
apsell:
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as noted elsewhere, this is ironic

aspell:
lang: en
d: en_US
ignore-case: true
Expand Down
1 change: 0 additions & 1 deletion .github/wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ boolean
customizable
dataset
de
dedcoded
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

similarly, including typos into a wordlist isn't a great idea...

extensibility
gcc
gevent
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
run: |
python setup.py bdist_wheel

# This is a noop job that is only needed for Github settings of the project.
# Github doesn't allow requiring all the checks and instead makes you specify
# This is a noop job that is only needed for GitHub settings of the project.
# GitHub doesn't allow requiring all the checks and instead makes you specify
# all the jobs one by one. "run-tests" however is a matrix job and specifying
# all of its possible items is tedious. So we add this job to make Github happy.
# all of its possible items is tedious. So we add this job to make GitHub happy.
verify_tests_succeeded:
name: Verify that tests succeeded
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pypi-publish.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish tag to Pypi
name: Publish tag to PyPI
on:
release:
types: [published]
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
path: ./wheelhouse/*.whl

publish:
name: Pypi publish
name: PyPI publish
needs: ['build_sdist', 'build_wheels']
runs-on: ubuntu-latest
environment: pypi
Expand Down Expand Up @@ -89,5 +89,5 @@ jobs:
cp -R artifacts/linux/* dist
cp -R artifacts/macos/* dist
cp -R artifacts/sdist/* dist
- name: Publish to Pypi
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
### 1.0.1 (2019-11-13)

* Permit all allowed values of codec errors (see #86)
* BUGFIX: READEME.md has UTF-8 characters, setup.py will fail on systems
* BUGFIX: README.md has UTF-8 characters, setup.py will fail on systems
where the locale is not UTF-8. (see #89)

### 1.0.0 (2019-01-20)
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,9 @@ initializing it:

Decoding of bulk data will be attempted using the specified encoding and
error handler. If the error handler is `'strict'` (the default), a
`UnicodeDecodeError` is raised when data cannot be dedcoded. This is identical
`UnicodeDecodeError` is raised when data cannot be decoded. This is identical
to Python's default behavior. Other valid values to `errors` include
`'replace'`, `'ignore'`, and `'backslashreplace'`. More information on the
behavior of these error handlers can be found
[here](https://docs.python.org/3/howto/unicode.html#the-string-type).
`'replace'`, `'ignore'`, and `'backslashreplace'`. See [Unicode HOWTO: The String Type](https://docs.python.org/3/howto/unicode.html#the-string-type) for more information on the behavior of these error handlers.
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suppose someone might want this to be wrapped differently..



When the specified encoding cannot be found, a `LookupError` will be raised
Expand Down