Skip to content

Commit bbad1a8

Browse files
committed
Building using python3.10
1 parent eecb51c commit bbad1a8

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

scripts/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/pypa/manylinux_1_2_x86_64
1+
FROM quay.io/pypa/manylinux2014_x86_64
22
ENV PATH=$PATH:/usr/local/bin
33
RUN yum -y update
44
RUN yum -y install freeglut-devel libtiff-devel libXmu-devel libffi-devel libXi-devel && yum clean all

scripts/build_wheels_linux.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,9 @@ echo "Path to store wheels : $WHEELHOUSE"
1010
rm -rf "$WHEELHOUSE" && mkdir -p "$WHEELHOUSE"
1111

1212
PYDIR310=/opt/python/cp310-cp310/
13-
PYDIR311=/opt/python/cp311-cp311/
14-
PYDIR312=/opt/python/cp312-cp312/
15-
PYDIR313=/opt/python/cp313-cp313/
16-
PYDIR314=/opt/python/cp314-cp314/
1713

18-
for PYDIR in $PYDIR314 $PYDIR313 $PYDIR312 $PYDIR311 $PYDIR310; do
14+
# all python3 version can use this wheel.
15+
for PYDIR in $PYDIR310; do
1916
PYTHON=$PYDIR/bin/python
2017

2118
# dependencies

source/python/pyproject.toml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "smoldyn"
33
version = "@SMOLDYN_VERSION@"
44
readme = "../README.md"
5-
requires-python = ">=3.9"
5+
requires-python = ">=3.10"
66
authors = [
77
{name = "Steve Andrews", email = "[email protected]"},
88
{name = "Dilawar Singh", email = "[email protected]"}

0 commit comments

Comments
 (0)