Skip to content

Commit

Permalink
Fix umlaut Python 2 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
banesullivan committed Jun 26, 2019
1 parent 6e7cd26 commit 3010bdc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Dieter Werthmuller & Bane Sullivan
Copyright (c) 2019 Dieter Werthmüller & Bane Sullivan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ environment you care most about.
If `scooby` is unable to detect aspects of an environment that you'd like to
know, please share this with us as a feature requests or pull requests.

This work is derived from [Dieter Werthmuller](https://github.com/prisae)'s work
This work is derived from [Dieter Werthmüller](https://github.com/prisae)'s work
towards creating a version reporting tool for the [empymod](https://github.com/empymod/)
and [SimPEG](https://github.com/simpeg/) projects.
This package has been altered to create a lightweight implementation so that it
Expand Down
5 changes: 3 additions & 2 deletions scooby/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# coding=utf-8
from scooby.extras import MKL_INFO, TOTAL_RAM
from scooby.knowledge import VERSION_ATTRIBUTES
from scooby.mysteries import in_ipython, in_jupyter
Expand Down Expand Up @@ -38,7 +39,7 @@ def investigate(core=None,
return versions


__author__ = 'Dieter Werthmuller & Bane Sullivan'
__author__ = 'Dieter Werthmüller & Bane Sullivan'
__license__ = 'MIT'
__copyright__ = '2019, Dieter Werthmuller & Bane Sullivan'
__copyright__ = '2019, Dieter Werthmüller & Bane Sullivan'
__version__ = '0.1.1'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

# coding=utf-8
import setuptools

__version__ = '0.1.1'
Expand All @@ -9,7 +9,7 @@
setuptools.setup(
name="scooby",
version=__version__,
author="Dieter Werthmuller & Bane Sullivan",
author="Dieter Werthmüller & Bane Sullivan",
author_email="info@pyvista.org",
description="A Great Dane turned Python environment detective",
long_description=long_description,
Expand Down

0 comments on commit 3010bdc

Please sign in to comment.