Skip to content

Commit

Permalink
removed Windows support
Browse files Browse the repository at this point in the history
  • Loading branch information
back-to committed Jul 31, 2021
1 parent 851c331 commit 10cbdc4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## unreleased 2.1.0.dev0

### Removed

- Windows support

## 2.0.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion liveproxy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.0'
__version__ = '2.1.0.dev0'
8 changes: 2 additions & 6 deletions liveproxy/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,9 @@
errno.EINVAL,
errno.EPIPE,
)
try:
ACCEPTABLE_ERRNO += (errno.WSAECONNABORTED,)
except AttributeError:
pass # Not windows

_re_streamlink = re.compile(r'streamlink(?:\.exe)?$')
_re_youtube_dl = re.compile(r'youtube[_-]dl(?:\.exe)?$')
_re_streamlink = re.compile(r'streamlink$', re.IGNORECASE)
_re_youtube_dl = re.compile(r'youtube[_-]dl$', re.IGNORECASE)

log = logging.getLogger(__name__.replace('liveproxy.', ''))

Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def find_version(*file_paths):
setup(
name='liveproxy',
version=find_version('liveproxy', '__init__.py'),
description='LiveProxy can redirect Livestreams to your favorite player on a lot of devices.',
description='LiveProxy can redirect Livestreams to your favorite player',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/back-to/liveproxy',
Expand All @@ -47,10 +47,8 @@ def find_version(*file_paths):
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
Expand Down

0 comments on commit 10cbdc4

Please sign in to comment.