Update readme + version number (#52)

This commit is contained in:
hakril
2024-05-19 19:12:12 +02:00
committed by GitHub
parent 9a0868da15
commit d3d6410276
3 changed files with 7 additions and 4 deletions
+1
View File
@@ -2,6 +2,7 @@
doctrees
*.inv
*.pickle
*.ignore
.vscode/
.cache/
+5 -3
View File
@@ -1,6 +1,7 @@
# PythonForWindows
[![Join the chat at https://gitter.im/PythonForWindows/general](https://badges.gitter.im/PythonForWindows/general.svg)](https://gitter.im/PythonForWindows/general)
[![Pytest](https://github.com/hakril/PythonForWindows/actions/workflows/mypytest.yml/badge.svg?branch=master)](https://github.com/hakril/PythonForWindows/actions/workflows/mypytest.yml)
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.
@@ -37,9 +38,10 @@ python setup.py install
#### Python3
python3 support is still in beta.
All the tests pass on master, but I did not test it heavily on real case.
Do not hesitate report bugs and issues.
PythonForWindows support python3 and is currently tested for Python2.7, 3.6 & 3.11 via [Github Workflow](https://github.com/hakril/PythonForWindows/actions/workflows/mypytest.yml)
Regarding the handling of encoding in the project it's currently a mix of Ascii & Unicode that may be awkward on Python3 as automatic encoding/decoding is not present.
The aim of passing the whole project under unicode is actvily ongoing.
## Overview
+1 -1
View File
@@ -4,7 +4,7 @@ import os.path
from setuptools import setup
PKG_NAME = "PythonForWindows"
VERSION = "0.6.0"
VERSION = "0.6.8"
# Load long description from README.md
this_directory = os.path.abspath(os.path.dirname(__file__))