Skip to content

Commit

Permalink
Force utf-8 and do not install tests
Browse files Browse the repository at this point in the history
  • Loading branch information
psarka committed Jun 7, 2021
1 parent a39ce89 commit 827d5ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fasteners/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# License for the specific language governing permissions and limitations
# under the License.

_VERSION = "0.16"
_VERSION = "0.16.2"


def version_string():
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from setuptools import find_packages
from setuptools import setup

with open("README.md", "r") as readme:
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()

install_requires = [
Expand All @@ -31,7 +31,7 @@

setup(
name='fasteners',
version='0.16',
version='0.16.2',
description='A python package that provides useful locks.',
author="Joshua Harlow",
author_email='[email protected]',
Expand All @@ -58,7 +58,7 @@
],
keywords="locks thread threads interprocess"
" processes process fasteners",
packages=find_packages(),
packages=find_packages(exclude=["tests"]),
long_description=long_description,
long_description_content_type='text/markdown'
)

0 comments on commit 827d5ef

Please sign in to comment.