brainglobe 1.1.0__tar.gz → 1.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of brainglobe might be problematic. Click here for more details.
- {brainglobe-1.1.0 → brainglobe-1.2.0}/.github/workflows/test_and_deploy.yml +4 -4
- {brainglobe-1.1.0 → brainglobe-1.2.0}/PKG-INFO +7 -6
- {brainglobe-1.1.0 → brainglobe-1.2.0}/brainglobe.egg-info/PKG-INFO +7 -6
- {brainglobe-1.1.0 → brainglobe-1.2.0}/brainglobe.egg-info/requires.txt +3 -3
- {brainglobe-1.1.0 → brainglobe-1.2.0}/pyproject.toml +10 -8
- {brainglobe-1.1.0 → brainglobe-1.2.0}/.gitignore +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/CITATION.cff +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/LICENSE +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/MANIFEST.in +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/README.md +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/brainglobe/__init__.py +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/brainglobe.egg-info/SOURCES.txt +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/brainglobe.egg-info/dependency_links.txt +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/brainglobe.egg-info/top_level.txt +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/setup.cfg +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/tests/__init__.py +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/tests/test_integration/__init__.py +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/tests/test_unit/__init__.py +0 -0
- {brainglobe-1.1.0 → brainglobe-1.2.0}/tests/test_unit/test__version__.py +0 -0
|
@@ -38,16 +38,16 @@ jobs:
|
|
|
38
38
|
strategy:
|
|
39
39
|
matrix:
|
|
40
40
|
# Run all supported Python versions on linux
|
|
41
|
-
python-version: ["3.
|
|
41
|
+
python-version: ["3.10", "3.11", "3.12"]
|
|
42
42
|
os: [ubuntu-latest]
|
|
43
43
|
# Include one windows and macos run
|
|
44
44
|
include:
|
|
45
45
|
- os: macos-13 # Intel Mac
|
|
46
|
-
python-version: "3.
|
|
46
|
+
python-version: "3.12"
|
|
47
47
|
- os: macos-latest # ARM Mac
|
|
48
|
-
python-version: "3.
|
|
48
|
+
python-version: "3.12"
|
|
49
49
|
- os: windows-latest
|
|
50
|
-
python-version: "3.
|
|
50
|
+
python-version: "3.12"
|
|
51
51
|
|
|
52
52
|
steps:
|
|
53
53
|
# Run tests
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: brainglobe
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Python-based tools for computational neuroanatomy.
|
|
5
5
|
Author-email: BrainGlobe Developers <hello@brainglobe.info>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -13,23 +13,24 @@ Project-URL: twitter, https://twitter.com/brain_globe
|
|
|
13
13
|
Classifier: Development Status :: 2 - Pre-Alpha
|
|
14
14
|
Classifier: Programming Language :: Python
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
19
|
Classifier: Operating System :: OS Independent
|
|
19
20
|
Classifier: License :: OSI Approved :: BSD License
|
|
20
|
-
Requires-Python: >=3.
|
|
21
|
+
Requires-Python: >=3.10.0
|
|
21
22
|
Description-Content-Type: text/markdown
|
|
22
23
|
License-File: LICENSE
|
|
23
24
|
Requires-Dist: brainglobe-atlasapi<3,>=2.0.6
|
|
24
|
-
Requires-Dist: brainglobe-heatmap<1,>=0.5.
|
|
25
|
+
Requires-Dist: brainglobe-heatmap<1,>=0.5.3
|
|
25
26
|
Requires-Dist: brainglobe-napari-io<1,>=0.3.4
|
|
26
|
-
Requires-Dist: brainglobe-segmentation<2,>=1.2.
|
|
27
|
+
Requires-Dist: brainglobe-segmentation<2,>=1.2.4
|
|
27
28
|
Requires-Dist: brainglobe-space<2,>=1.0.2
|
|
28
29
|
Requires-Dist: brainglobe-utils<1,>=0.5.0
|
|
29
30
|
Requires-Dist: brainreg[napari]<2,>=1.0.9
|
|
30
31
|
Requires-Dist: brainrender-napari<1,>=0.0.3
|
|
31
32
|
Requires-Dist: brainrender<3,>=2.1.9
|
|
32
|
-
Requires-Dist: cellfinder[napari]<2,>=1.
|
|
33
|
+
Requires-Dist: cellfinder[napari]<2,>=1.3.0
|
|
33
34
|
Requires-Dist: napari[all]
|
|
34
35
|
Provides-Extra: dev
|
|
35
36
|
Requires-Dist: pytest; extra == "dev"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: brainglobe
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Python-based tools for computational neuroanatomy.
|
|
5
5
|
Author-email: BrainGlobe Developers <hello@brainglobe.info>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -13,23 +13,24 @@ Project-URL: twitter, https://twitter.com/brain_globe
|
|
|
13
13
|
Classifier: Development Status :: 2 - Pre-Alpha
|
|
14
14
|
Classifier: Programming Language :: Python
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
19
|
Classifier: Operating System :: OS Independent
|
|
19
20
|
Classifier: License :: OSI Approved :: BSD License
|
|
20
|
-
Requires-Python: >=3.
|
|
21
|
+
Requires-Python: >=3.10.0
|
|
21
22
|
Description-Content-Type: text/markdown
|
|
22
23
|
License-File: LICENSE
|
|
23
24
|
Requires-Dist: brainglobe-atlasapi<3,>=2.0.6
|
|
24
|
-
Requires-Dist: brainglobe-heatmap<1,>=0.5.
|
|
25
|
+
Requires-Dist: brainglobe-heatmap<1,>=0.5.3
|
|
25
26
|
Requires-Dist: brainglobe-napari-io<1,>=0.3.4
|
|
26
|
-
Requires-Dist: brainglobe-segmentation<2,>=1.2.
|
|
27
|
+
Requires-Dist: brainglobe-segmentation<2,>=1.2.4
|
|
27
28
|
Requires-Dist: brainglobe-space<2,>=1.0.2
|
|
28
29
|
Requires-Dist: brainglobe-utils<1,>=0.5.0
|
|
29
30
|
Requires-Dist: brainreg[napari]<2,>=1.0.9
|
|
30
31
|
Requires-Dist: brainrender-napari<1,>=0.0.3
|
|
31
32
|
Requires-Dist: brainrender<3,>=2.1.9
|
|
32
|
-
Requires-Dist: cellfinder[napari]<2,>=1.
|
|
33
|
+
Requires-Dist: cellfinder[napari]<2,>=1.3.0
|
|
33
34
|
Requires-Dist: napari[all]
|
|
34
35
|
Provides-Extra: dev
|
|
35
36
|
Requires-Dist: pytest; extra == "dev"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
brainglobe-atlasapi<3,>=2.0.6
|
|
2
|
-
brainglobe-heatmap<1,>=0.5.
|
|
2
|
+
brainglobe-heatmap<1,>=0.5.3
|
|
3
3
|
brainglobe-napari-io<1,>=0.3.4
|
|
4
|
-
brainglobe-segmentation<2,>=1.2.
|
|
4
|
+
brainglobe-segmentation<2,>=1.2.4
|
|
5
5
|
brainglobe-space<2,>=1.0.2
|
|
6
6
|
brainglobe-utils<1,>=0.5.0
|
|
7
7
|
brainreg[napari]<2,>=1.0.9
|
|
8
8
|
brainrender-napari<1,>=0.0.3
|
|
9
9
|
brainrender<3,>=2.1.9
|
|
10
|
-
cellfinder[napari]<2,>=1.
|
|
10
|
+
cellfinder[napari]<2,>=1.3.0
|
|
11
11
|
napari[all]
|
|
12
12
|
|
|
13
13
|
[dev]
|
|
@@ -3,7 +3,7 @@ name = "brainglobe"
|
|
|
3
3
|
authors = [{ name = "BrainGlobe Developers", email = "hello@brainglobe.info" }]
|
|
4
4
|
description = "Python-based tools for computational neuroanatomy."
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
requires-python = ">=3.
|
|
6
|
+
requires-python = ">=3.10.0"
|
|
7
7
|
dynamic = ["version"]
|
|
8
8
|
|
|
9
9
|
license = { text = "BSD-3-Clause" }
|
|
@@ -12,23 +12,24 @@ classifiers = [
|
|
|
12
12
|
"Development Status :: 2 - Pre-Alpha",
|
|
13
13
|
"Programming Language :: Python",
|
|
14
14
|
"Programming Language :: Python :: 3",
|
|
15
|
-
"Programming Language :: Python :: 3.9",
|
|
16
15
|
"Programming Language :: Python :: 3.10",
|
|
16
|
+
"Programming Language :: Python :: 3.11",
|
|
17
|
+
"Programming Language :: Python :: 3.12",
|
|
17
18
|
"Operating System :: OS Independent",
|
|
18
19
|
"License :: OSI Approved :: BSD License",
|
|
19
20
|
]
|
|
20
21
|
|
|
21
22
|
dependencies = [
|
|
22
23
|
"brainglobe-atlasapi>=2.0.6,<3",
|
|
23
|
-
"brainglobe-heatmap>=0.5.
|
|
24
|
+
"brainglobe-heatmap>=0.5.3,<1",
|
|
24
25
|
"brainglobe-napari-io>=0.3.4,<1",
|
|
25
|
-
"brainglobe-segmentation>=1.2.
|
|
26
|
+
"brainglobe-segmentation>=1.2.4,<2",
|
|
26
27
|
"brainglobe-space>=1.0.2,<2",
|
|
27
28
|
"brainglobe-utils>=0.5.0,<1",
|
|
28
29
|
"brainreg[napari]>=1.0.9,<2",
|
|
29
30
|
"brainrender-napari>=0.0.3,<1",
|
|
30
31
|
"brainrender>=2.1.9,<3",
|
|
31
|
-
"cellfinder[napari]>=1.
|
|
32
|
+
"cellfinder[napari]>=1.3.0,<2",
|
|
32
33
|
"napari[all]",
|
|
33
34
|
# brainglobe-napari [WIP],
|
|
34
35
|
]
|
|
@@ -69,7 +70,7 @@ exclude = ["tests*"]
|
|
|
69
70
|
addopts = "--cov=brainglobe"
|
|
70
71
|
|
|
71
72
|
[tool.black]
|
|
72
|
-
target-version = ['
|
|
73
|
+
target-version = ['py310', 'py311', 'py312']
|
|
73
74
|
skip-string-normalization = false
|
|
74
75
|
line-length = 79
|
|
75
76
|
|
|
@@ -93,13 +94,14 @@ fix = true
|
|
|
93
94
|
[tool.tox]
|
|
94
95
|
legacy_tox_ini = """
|
|
95
96
|
[tox]
|
|
96
|
-
envlist = py{39,310}
|
|
97
|
+
envlist = py{39,310,311}
|
|
97
98
|
isolated_build = True
|
|
98
99
|
|
|
99
100
|
[gh-actions]
|
|
100
101
|
python =
|
|
101
|
-
3.9: py39
|
|
102
102
|
3.10: py310
|
|
103
|
+
3.11: py311
|
|
104
|
+
3.12: py312
|
|
103
105
|
|
|
104
106
|
[testenv]
|
|
105
107
|
extras =
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|