-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into factor_value_lists
- Loading branch information
Showing
48 changed files
with
1,150 additions
and
754 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Load Altamisa in Python or use via the CLI. | ||
2. Run this code '...' | ||
3. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Output** | ||
Provide console output to help explain your problem. | ||
|
||
**System information (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Python version | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. E. g.: I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context about the feature request here. |
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,12 @@ | ||
<!-- | ||
NOTE: In most cases, you should create an issue first, and only then | ||
a pull request. Please see the contribution guidelines for | ||
further information. In particular related to conventional | ||
commit messages. | ||
The title should have the following format: | ||
<type>: description (#<issue>) | ||
--> |
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,22 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
# We recommend specifying your dependencies to enable reproducible builds: | ||
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html | ||
python: | ||
install: | ||
- requirements: requirements/develop.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* @sellth @mkuhring @holtgrewe |
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 |
---|---|---|
@@ -1,21 +1,59 @@ | ||
.PHONY: default black flake8 test test-v test-vv | ||
.PHONY: default | ||
default: help | ||
|
||
default: black flake8 | ||
.PHONY: help | ||
help: | ||
@echo "make help - show this help" | ||
@echo "make lint - run all linting" | ||
@echo "make format - run all formatting" | ||
@echo "make lint-isort - run isort linting" | ||
@echo "make format-isort - run isort formatting" | ||
@echo "make lint-black - run black linting" | ||
@echo "make format-black - run black formatting" | ||
@echo "make lint-flake8 - run flake8 linting" | ||
@echo "make lint-pyright - run pyright linting" | ||
@echo "make test - run all tests" | ||
@echo "make test-v - run all tests with verbose output" | ||
@echo "make test-vv - run all tests with very verbose output" | ||
|
||
black: | ||
black -l 100 --exclude "versioneer.py|_version.py" . | ||
.PHONY: lint | ||
lint: lint-isort lint-black lint-flake8 lint-pyright | ||
|
||
.PHONY: format | ||
format: format-isort format-black | ||
|
||
.PHONY: lint-isort | ||
lint-isort: | ||
isort --check-only --diff --force-sort-within-sections --profile=black . | ||
|
||
.PHONY: format-isort | ||
format-isort: | ||
isort --force-sort-within-sections --profile=black . | ||
|
||
black-check: | ||
.PHONY: lint-black | ||
lint-black: | ||
black -l 100 --exclude "versioneer.py|_version.py" --check . | ||
|
||
flake8: | ||
.PHONY: format-black | ||
format-black: | ||
black -l 100 --exclude "versioneer.py|_version.py" . | ||
|
||
.PHONY: lint-flake8 | ||
lint-flake8: | ||
flake8 . | ||
|
||
.PHONY: lint-pyright | ||
lint-pyright: | ||
pyright | ||
|
||
.PHONY: test | ||
test: | ||
pytest | ||
|
||
.PHONY: test-v | ||
test-v: | ||
pytest -v | ||
|
||
.PHONY: test-vv | ||
test-vv: | ||
pytest -vv |
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
Oops, something went wrong.