Skip to content

Commit

Permalink
0.2.1 release (#121)
Browse files Browse the repository at this point in the history
* Set version to 0.2.1

* Update changelog

* Update changelog

* Use setup.cfg in the build setup
  • Loading branch information
itziakos authored Jun 19, 2023
1 parent 53f0333 commit be42cbb
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 30 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Change Log
==========

Version 0.2.1
-------------

- Use faulthandler when testing and fix discovered errors (#115, #117).
- Fix support for None username in credentials to be consistent in all backends (#99).
- Test also on cp38, cp39, cp310, cp311 and use cp38 for linking (#114, #107, #100).
- Add support for CredEnumerate extending code from @markb-EE (#110, #109, #111)
- Remove support for older python versions < cp36 (#104, #120).

Version 0.2.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include *.rst
include *.txt
include *.cfg
recursive-include docs *.bat *.py *.rst
include docs/Makefile
include tox.ini
include VERSION
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.1.dev1
0.2.1
26 changes: 26 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[metadata]
name = pywin32-ctypes
version = file: VERSION
url = https://github.com/enthought/pywin32-ctypes
author = Enthought Inc.
author_email = [email protected]
description = A (partial) reimplementation of pywin32 using ctypes/cffi
long_description = file: README.rst, CHANGELOG.txt
license = BSD-3-Clause
license_files = file: LICENSE.txt
classifier =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
zip_safe = False
packages = find:
python_requires = >=3.6

[options.packages.find]
exclude = docs*
34 changes: 6 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,8 @@
import os
from setuptools import setup, find_packages
from pathlib import Path
from setuptools import setup

HERE = Path(__file__).parent
version = (HERE / 'VERSION').read_text().strip()
filename = (HERE / 'win32ctypes' / 'version.py').write_text(f'__version__ = "{version}"\n')

HERE = os.path.dirname(__file__)
version = open(
os.path.join(HERE, 'VERSION')).read().strip()

filename = os.path.join(HERE, 'win32ctypes', 'version.py')
with open(filename, 'w') as handle:
handle.write(f'__version__ = "{version}"\n')

setup(
name='pywin32-ctypes',
version=version,
url='https://github.com/enthought/pywin32-ctypes',
author='Enthought Inc',
author_email='[email protected]',
packages=find_packages(),
license="BSD",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
zip_safe=False,
test_suite='win32ctypes.tests')
setup()

0 comments on commit be42cbb

Please sign in to comment.