Skip to content

Commit

Permalink
Merge pull request #658 from mcneel/luis/python3.13
Browse files Browse the repository at this point in the history
Luis/python3.13
  • Loading branch information
fraguada authored Nov 20, 2024
2 parents d7f1c66 + 43eafba commit eb9df40
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/workflow_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
fetch-depth: 2
- name: check changed files
uses: tj-actions/changed-files@v42
uses: tj-actions/changed-files@v45.0.4
id: changed-files
with:
files: .github/workflows/workflow_ci.yml
Expand All @@ -46,7 +46,7 @@ jobs:
with:
fetch-depth: 2
- name: check changed files
uses: tj-actions/changed-files@v42
uses: tj-actions/changed-files@v45.0.4
id: changed-files
with:
files: |
Expand All @@ -72,7 +72,7 @@ jobs:
with:
fetch-depth: 2
- name: check changed files
uses: tj-actions/changed-files@v42
uses: tj-actions/changed-files@v45.0.4
id: changed-files
with:
files: |
Expand All @@ -96,7 +96,7 @@ jobs:
with:
fetch-depth: 2
- name: check changed files
uses: tj-actions/changed-files@v42
uses: tj-actions/changed-files@v45.0.4
id: changed-files
with:
files: |
Expand All @@ -120,7 +120,7 @@ jobs:
with:
fetch-depth: 2
- name: check changed files
uses: tj-actions/changed-files@v42
uses: tj-actions/changed-files@v45.0.4
id: changed-files
with:
files: |
Expand All @@ -145,7 +145,7 @@ jobs:
with:
fetch-depth: 2
- name: check changed files
uses: tj-actions/changed-files@v42
uses: tj-actions/changed-files@v45.0.4
id: changed-files
with:
files: src/dotnet/**
Expand All @@ -169,7 +169,7 @@ jobs:
with:
fetch-depth: 2
- name: check changed files
uses: tj-actions/changed-files@v42
uses: tj-actions/changed-files@v45.0.4
id: changed-files
with:
files: |
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-2019, macos-12, macos-14]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
include:
- os: ubuntu-latest
target: linux
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/workflow_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
container: quay.io/pypa/manylinux_2_28_x86_64 #manylinux2014_x86_64
strategy:
matrix:
python-version: [cp38-cp38, cp39-cp39, cp310-cp310, cp311-cp311, cp312-cp312]
python-version: [cp38-cp38, cp39-cp39, cp310-cp310, cp311-cp311, cp312-cp312, cp313-cp313]
fail-fast: false
steps:
- name: info
Expand All @@ -74,6 +74,8 @@ jobs:
run: git config --global --add safe.directory /__w/rhino3dm/rhino3dm
- name: update submodules
run: git submodule update --init
- name: install dependencies
run: /opt/python/${{ matrix.python-version }}/bin/python -m pip install --upgrade pip setuptools wheel
- name: build python manylinux
run: /opt/python/${{ matrix.python-version }}/bin/python setup.py bdist_wheel build --debug
- name: audit python wheel
Expand Down Expand Up @@ -104,7 +106,7 @@ jobs:
strategy:
matrix:
os: [windows-2019, macos-12, macos-14]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
include:
- os: windows-2019
target: windows
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ diff:
- (js, py) DimensionStyle.Id
- (js, py) Several delete methods for File3dm Tables: File3dmMaterialTable::Delete, BND_File3dmLayerTable::Delete, BND_File3dmDimStyleTable::Delete
- (js, py) Added tests for various ::Delete methods.
- (py) Added python 3.13 target #654

### Changed

Expand Down

0 comments on commit eb9df40

Please sign in to comment.