Skip to content

Commit

Permalink
Merge pull request #28 from SpiNNakerManchester/python3.12
Browse files Browse the repository at this point in the history
Python3.12
  • Loading branch information
Christian-B authored Jan 5, 2024
2 parents d8749e5 + 3d86da4 commit d19c60e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/c_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ jobs:
make doxygen
- name: Validate CITATION.cff
if: matrix.python-version == 3.8
if: matrix.python-version == 3.12
uses: dieghernan/cff-validator@main
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ classifiers=
Operating System :: MacOS
Programming Language :: Python :: C
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Neuroscience
maintainer = SpiNNakerTeam
Expand All @@ -46,7 +46,7 @@ keywords =
placement

[options]
python_requires = >=3.7, <4
python_requires = >=3.8, <4
packages = find:
zip_safe = True
include_package_data = True
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import distutils.dir_util
from setuptools import setup
import os
import shutil
import sys


Expand All @@ -26,9 +26,9 @@
this_dir = os.path.dirname(os.path.abspath(__file__))
build_dir = os.path.join(this_dir, "build")
if os.path.isdir(build_dir):
distutils.dir_util.remove_tree(build_dir)
shutil.rmtree(build_dir)
egg_dir = os.path.join(
this_dir, "sPyNNaker_C_Visualisers_Library.egg-info")
if os.path.isdir(egg_dir):
distutils.dir_util.remove_tree(egg_dir)
shutil.rmtree(egg_dir)
setup()

0 comments on commit d19c60e

Please sign in to comment.