Updated version to 0.6 - Py3 supported !

This commit is contained in:
hakril
2020-07-16 23:43:23 +02:00
parent 8e257f9678
commit 7a368a1a23
3 changed files with 6 additions and 10 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
[![Join the chat at https://gitter.im/PythonForWindows/general](https://badges.gitter.im/PythonForWindows/general.svg)](https://gitter.im/PythonForWindows/general)
PythonForWindows is a base of code aimed to make interaction with `Windows` (on X86/X64) easier (for both 32 and 64 bits Python).
PythonForWindows (PFW) is a base of code aimed to make interaction with `Windows` (on X86/X64) easier (for both 32 and 64 bits Python).
Its goal is to offer abstractions around some of the OS features in a (I hope) pythonic way.
It also tries to make the barrier between python and native execution thinner in both ways.
There is no external dependencies but it relies heavily on the `ctypes` module.
+3 -3
View File
@@ -64,16 +64,16 @@ master_doc = 'index'
# General information about the project.
project = u'PythonForWindows'
copyright = u'2015, Clement Rouault'
copyright = u'2015-2020, Clement Rouault'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.5'
version = '0.6'
# The full version, including alpha/beta/rc tags.
release = '0.5'
release = '0.6'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+2 -6
View File
@@ -3,11 +3,7 @@ import sys
from setuptools import setup
PKG_NAME = "PythonForWindows"
VERSION = "0.5"
if sys.version_info[0] != 2:
print("PythonForWindows python3 support is still in beta, feel free to send feedback")
VERSION = "0.6"
setup(
name = PKG_NAME,
@@ -28,6 +24,6 @@ setup(
'windows.winobject',
'windows.winproxy',
'windows.winproxy.apis'],
classifiers = ['Programming Language :: Python :: 2 :: Only',
classifiers = ['Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7']
)