Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for Python3.12 #498

Merged
merged 3 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ environment:
- py: Python310-x64
- py: Python311
- py: Python311-x64
- py: Python312
- py: Python312-x64

test_script:
- C:\%py%\Scripts\pip.exe install --upgrade setuptools
- C:\%py%\python.exe setup.py install
- C:\%py%\Scripts\pip.exe uninstall comtypes -y
- C:\%py%\python.exe test_pip_install.py
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
import os
import subprocess

from distutils.core import Command
from distutils.command.install import install
from setuptools import setup
from setuptools import Command, setup
from setuptools.command.install import install
from setuptools.command.build_py import build_py

from distutils.command.build_py import build_py

with open('README.md') as readme_stream:
readme = readme_stream.read()
Expand Down