From 7a368a1a2387c9de4246f659edf36a616359c7e5 Mon Sep 17 00:00:00 2001 From: hakril Date: Thu, 16 Jul 2020 23:43:23 +0200 Subject: [PATCH] Updated version to 0.6 - Py3 supported ! --- README.md | 2 +- docs/source/conf.py | 6 +++--- setup.py | 8 ++------ 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d0b7378..bc55a0d 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/docs/source/conf.py b/docs/source/conf.py index 9d6800c..8c26300 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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. diff --git a/setup.py b/setup.py index 0354142..e4ddc7b 100644 --- a/setup.py +++ b/setup.py @@ -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'] ) \ No newline at end of file