This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use composite test action Fix use-xvfb argument * Clean tox.ini * Don't fail fast * Remove old setup steps * Clean up dev dependencies Add pyqt5 back as a dev dep * Try passing display env Put back passenv in tox * Test on Python 3.11 * Update Python versions --------- Co-authored-by: Adam Tyson <[email protected]>
- Loading branch information
1 parent
2f6ff3e
commit 989f47a
Showing
3 changed files
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "brainreg-napari" | |
authors = [{name = "Adam Tyson, Stephen Lenzi", email= "[email protected]"}] | ||
description = "Multi-atlas whole-brain microscopy registration" | ||
readme = "README.md" | ||
requires-python = ">=3.8.0" | ||
requires-python = ">=3.9.0" | ||
dynamic = ["version"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
|
@@ -13,9 +13,9 @@ classifiers = [ | |
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
|
@@ -67,7 +67,7 @@ build-backend = "setuptools.build_meta" | |
[tool.setuptools_scm] | ||
|
||
[tool.black] | ||
target-version = ['py38', 'py39', 'py310'] | ||
target-version = ['py39', 'py310', 'py311'] | ||
skip-string-normalization = false | ||
line-length = 79 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ isolated_build = True | |
|
||
[gh-actions] | ||
python = | ||
3.8: py38 | ||
3.9: py39 | ||
3.10: py310 | ||
3.11: py311 | ||
|