-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop support for python 2 and 3.6, version 2.0.0 (#17).
* Start drop of py 27 and 36 support. * Add type hints.
- Loading branch information
Showing
15 changed files
with
824 additions
and
552 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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
|
||
submodules: | ||
include: all | ||
recursive: true | ||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include scinum.py setup.py requirements.txt requirements_docs.txt README.md LICENSE .flake8 | ||
global-exclude *.py[cod] __pycache__ .github | ||
graft scinum | ||
include requirements.txt requirements_dev.txt README.md LICENSE .flake8 | ||
global-exclude *.py[cod] __pycache__ .github tests/* |
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# main packages | ||
-r ../requirements.txt | ||
|
||
# dev packages | ||
-r ../requirements_dev.txt | ||
|
||
# documentation packages | ||
sphinx~=6.2.1 | ||
sphinx-autodoc-typehints~=1.22,<1.23 | ||
sphinx-book-theme~=1.0.1 | ||
sphinx-lfs-content~=1.1.3 | ||
autodocsumm~=0.2.11 | ||
myst-parser~=2.0.0 |
Oops, something went wrong.