Skip to content

Commit

Permalink
Merge pull request #247 from CGAL/python-3.12
Browse files Browse the repository at this point in the history
Update for Python 3.12
  • Loading branch information
lrineau authored Oct 3, 2023
2 parents 60e1023 + f7f342a commit ae037d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'

- name: Upgrade pip
run: |
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
matrix:
cgal_branch: [v5.6, 5.6.x-branch, master]
#cgal_branch: [v5.5]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
#python-version: ["3.9"]
os: [ubuntu-latest, macos-latest, windows-latest]
#os: [macos-latest]
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@

from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as build_ext_orig
from distutils.command.build_py import build_py as build_py_orig
from distutils.command.install import install
from distutils.command.install_lib import install_lib
from distutils.command.build import build
from setuptools.command.install import install
from setuptools.command.install_lib import install_lib
from setuptools.command.build import build
from wheel.bdist_wheel import bdist_wheel


Expand Down

0 comments on commit ae037d5

Please sign in to comment.