Skip to content

Commit 7a368a1

Browse files
committed
Updated version to 0.6 - Py3 supported !
1 parent 8e257f9 commit 7a368a1

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Join the chat at https://gitter.im/PythonForWindows/general](https://badges.gitter.im/PythonForWindows/general.svg)](https://gitter.im/PythonForWindows/general)
44

5-
PythonForWindows is a base of code aimed to make interaction with `Windows` (on X86/X64) easier (for both 32 and 64 bits Python).
5+
PythonForWindows (PFW) is a base of code aimed to make interaction with `Windows` (on X86/X64) easier (for both 32 and 64 bits Python).
66
Its goal is to offer abstractions around some of the OS features in a (I hope) pythonic way.
77
It also tries to make the barrier between python and native execution thinner in both ways.
88
There is no external dependencies but it relies heavily on the `ctypes` module.

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,16 @@
6464

6565
# General information about the project.
6666
project = u'PythonForWindows'
67-
copyright = u'2015, Clement Rouault'
67+
copyright = u'2015-2020, Clement Rouault'
6868

6969
# The version info for the project you're documenting, acts as replacement for
7070
# |version| and |release|, also used in various other places throughout the
7171
# built documents.
7272
#
7373
# The short X.Y version.
74-
version = '0.5'
74+
version = '0.6'
7575
# The full version, including alpha/beta/rc tags.
76-
release = '0.5'
76+
release = '0.6'
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33
from setuptools import setup
44

55
PKG_NAME = "PythonForWindows"
6-
VERSION = "0.5"
7-
8-
if sys.version_info[0] != 2:
9-
print("PythonForWindows python3 support is still in beta, feel free to send feedback")
10-
6+
VERSION = "0.6"
117

128
setup(
139
name = PKG_NAME,
@@ -28,6 +24,6 @@
2824
'windows.winobject',
2925
'windows.winproxy',
3026
'windows.winproxy.apis'],
31-
classifiers = ['Programming Language :: Python :: 2 :: Only',
27+
classifiers = ['Programming Language :: Python :: 3',
3228
'Programming Language :: Python :: 2.7']
3329
)

0 commit comments

Comments
 (0)