Skip to content

Commit 8881585

Browse files
committed
Remove Python 3.9 references
1 parent c03156b commit 8881585

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/ci-ifcopenshell-python-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
pyver: [py39, py310, py311, py312, py313, py314]
27+
pyver: [py310, py311, py312, py313, py314]
2828
config:
2929
- {
3030
name: "Windows 64bit",

.github/workflows/ci-ifcopenshell-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
pyver: [py39, py310, py311, py312, py313, py314]
22+
pyver: [py310, py311, py312, py313, py314]
2323
config:
2424
- {
2525
name: "Windows 64bit",

src/ifcopenshell-python/Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ endif
2828
endif
2929

3030
# TODO: we should simplify this at some point...
31-
ifeq ($(PYVERSION), py39)
32-
PYNUMBER:=39
33-
endif
3431
ifeq ($(PYVERSION), py310)
3532
PYNUMBER:=310
3633
endif

src/ifcopenshell-python/test/test_package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# - .github/workflows/ci-ifcopenshell-python.yml
3333
# - .github/workflows/ci-ifcopenshell-python-pypi.yml
3434
# - src/ifcopenshell-python/Makefile (PYVERSION check)
35-
SUPPORTED_PY_VERSIONS = ("39", "310", "311", "312", "313", "314")
35+
SUPPORTED_PY_VERSIONS = ("310", "311", "312", "313", "314")
3636
SUPPORTED_PLATFORMS = ("win64", "linux64", "macos64", "macosm164")
3737

3838
WASM_SUPPORTED_PY_VERSIONS = ("313",)

0 commit comments

Comments
 (0)