-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
38 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# | ||
# docs/makefile: GNU makefile for building the documentation | ||
# | ||
# Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
# Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
# | ||
# <LICENSE_BLOCK> | ||
# The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
docs/conf.py: Configures the documentation build process | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# | ||
# makefile: GNU makefile for project management | ||
# | ||
# Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
# Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
# | ||
# <LICENSE_BLOCK> | ||
# The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
setup.py: Used for package distribution | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
@@ -34,7 +34,7 @@ | |
setup | ||
) | ||
import os | ||
from sys import platform | ||
from sys import platform, version_info | ||
|
||
|
||
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
|
@@ -43,13 +43,15 @@ | |
|
||
|
||
# Bump version HERE! | ||
_version_ = '0.2.0' | ||
_version_ = '0.2.1' | ||
|
||
|
||
# List all versions of Python which are supported | ||
python_minor_min = 4 | ||
python_minor_max = 8 | ||
confirmed_python_versions = [ | ||
('Programming Language :: Python :: %s' % x) | ||
for x in '3.4 3.5 3.6 3.7 3.8'.split() | ||
'Programming Language :: Python :: 3.{MINOR:d}'.format(MINOR = minor) | ||
for minor in range(python_minor_min, python_minor_max + 1) | ||
] | ||
|
||
|
||
|
@@ -63,6 +65,13 @@ | |
raise SystemExit('You are already running Windows. No need for this package!') | ||
|
||
|
||
# Python 3.4 dependency / CI fix | ||
pls = 'python-language-server' | ||
assert version_info.major == 3 | ||
if version_info.minor <= 4: | ||
pls += '<0.32.0' | ||
|
||
|
||
setup( | ||
name = 'wenv', | ||
packages = find_packages('src'), | ||
|
@@ -79,6 +88,7 @@ | |
keywords = ['wine', 'cross platform'], | ||
scripts = [], | ||
include_package_data = True, | ||
python_requires = '>=3.{MINOR:d}'.format(MINOR = python_minor_min), | ||
install_requires = [ | ||
'requests' | ||
], | ||
|
@@ -87,7 +97,7 @@ | |
'pytest', | ||
'coverage', | ||
'pytest-cov', | ||
'python-language-server', | ||
pls, | ||
'setuptools', | ||
'Sphinx', | ||
'sphinx_rtd_theme', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
src/wenv/__init__.py: Package init file | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
src/wenv/__init__.py: Package entry point | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
src/wenv/_core/__init__.py: Core module | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
src/wenv/_core/config.py: Handles the modules configuration | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
src/wenv/_core/const.py: Holds constant values, flags, types | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
src/wenv/_core/env.py: Managing a Wine-Python environment | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
src/wenv/_core/errors.py: Exceptions | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
src/wenv/_core/source.py: Obtaining Python and pip locally or remotely | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
tests/__init__.py: Test module | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
tests/lib/__init__.py: Test library module | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
tests/lib/const.py: Holds constant values, flags, types | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
tests/lib/const.py: Holds constant values, flags, types | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
tests/test_init.py: Testing clean & init | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
tests/test_util.py: Testing pip | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
tests/test_util.py: Testing Python interpreter | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2020 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|