Skip to content
Snippets Groups Projects
Commit ed5f7e53 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Merge branch 'mnt/python37' into 'master'

Mnt/python37

See merge request fsl/fslpy!297
parents af88e018 34db3b00
No related branches found
No related tags found
No related merge requests found
Pipeline #8618 canceled
...@@ -173,7 +173,7 @@ test:3.9: ...@@ -173,7 +173,7 @@ test:3.9:
test:build-pypi-dist: test:build-pypi-dist:
stage: test stage: test
image: pauldmccarthy/fsleyes-py36-wxpy4-gtk3 image: pauldmccarthy/fsleyes-py37-wxpy4-gtk3
<<: *except_releases <<: *except_releases
tags: tags:
...@@ -191,7 +191,7 @@ test:build-pypi-dist: ...@@ -191,7 +191,7 @@ test:build-pypi-dist:
style: style:
stage: style stage: style
image: pauldmccarthy/fsleyes-py36-wxpy4-gtk3 image: pauldmccarthy/fsleyes-py37-wxpy4-gtk3
<<: *test_template <<: *test_template
variables: variables:
TEST_STYLE: "true" TEST_STYLE: "true"
......
...@@ -2,6 +2,18 @@ This document contains the ``fslpy`` release history in reverse chronological ...@@ -2,6 +2,18 @@ This document contains the ``fslpy`` release history in reverse chronological
order. order.
3.6.1 (Thursday 27th April 2021)
--------------------------------
Changed
^^^^^^^
* Removed the ``dataclasses`` backport from requirements (!297).
3.6.0 (Monday 19th April 2021) 3.6.0 (Monday 19th April 2021)
------------------------------ ------------------------------
...@@ -11,7 +23,7 @@ Changed ...@@ -11,7 +23,7 @@ Changed
* The ``fslpy`` API ocumentation is now hosted at * The ``fslpy`` API ocumentation is now hosted at
https://open.win.ox.ac.uk/fsl/fslpy (!290). https://open.win.ox.ac.uk/pages/fsl/fslpy (!290).
* The :mod:`fsl` and :mod:`fsl.scripts` packages have been changed from being * The :mod:`fsl` and :mod:`fsl.scripts` packages have been changed from being
`pkgutil-style `pkgutil-style
<https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages>`_ <https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages>`_
......
...@@ -98,6 +98,9 @@ The `fsl.transform.x5 <fsl/transform/x5.py>`_ module uses `h5py ...@@ -98,6 +98,9 @@ The `fsl.transform.x5 <fsl/transform/x5.py>`_ module uses `h5py
Documentation Documentation
------------- -------------
API documentation for ``fslpy`` is hosted at
https://open.win.ox.ac.uk/pages/fsl/fslpy/.
``fslpy`` is documented using `sphinx <http://http://sphinx-doc.org/>`_. You ``fslpy`` is documented using `sphinx <http://http://sphinx-doc.org/>`_. You
can build the API documentation by running:: can build the API documentation by running::
......
...@@ -2,4 +2,3 @@ h5py>=2.9 ...@@ -2,4 +2,3 @@ h5py>=2.9
nibabel>=2.4 nibabel>=2.4
numpy>=1 numpy>=1
scipy>=0.18 scipy>=0.18
dataclasses
...@@ -93,6 +93,7 @@ setup( ...@@ -93,6 +93,7 @@ setup(
author='Paul McCarthy', author='Paul McCarthy',
author_email='pauldmccarthy@gmail.com', author_email='pauldmccarthy@gmail.com',
license='Apache License Version 2.0', license='Apache License Version 2.0',
python_requires='>=3.7',
classifiers=[ classifiers=[
'Development Status :: 3 - Alpha', 'Development Status :: 3 - Alpha',
......
...@@ -10,6 +10,7 @@ import os ...@@ -10,6 +10,7 @@ import os
import gc import gc
import os.path as op import os.path as op
import sys import sys
import time
import shutil import shutil
import tempfile import tempfile
import pytest import pytest
...@@ -41,8 +42,22 @@ def test_haveGui(): ...@@ -41,8 +42,22 @@ def test_haveGui():
import wx import wx
p = fslplatform.Platform() p = fslplatform.Platform()
app = wx.App()
# We can get weird conflicts w.r.t. access to
# the display when multiple tests are running
# simultaneously within docker on the same
# machine.
app = None
for _ in range(5):
try:
app = wx.App()
break
except Exception:
time.sleep(1)
if app is None:
assert False
frame = wx.Frame(None) frame = wx.Frame(None)
passed = [False] passed = [False]
frame.Show() frame.Show()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment