-
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.
Merge branch 'master' of github.com:XENONnT/utilix
- Loading branch information
Showing
25 changed files
with
1,118 additions
and
791 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
[bumpversion] | ||
current_version = 0.8.5 | ||
files = setup.py utilix/__init__.py | ||
current_version = 0.9.1 | ||
files = utilix/__init__.py | ||
commit = True | ||
tag = True | ||
|
||
[bumpversion:file:pyproject.toml] | ||
search = version = "{current_version}" | ||
replace = version = "{new_version}" |
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,41 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-added-large-files | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 24.8.0 | ||
hooks: | ||
- id: black | ||
args: [--safe, --line-length=100, --preview] | ||
language_version: python3 | ||
|
||
- repo: https://github.com/pycqa/docformatter | ||
rev: v1.7.5 | ||
hooks: | ||
- id: docformatter | ||
additional_dependencies: [tomli] | ||
args: [--config, pyproject.toml] | ||
|
||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v1.11.2 | ||
hooks: | ||
- id: mypy | ||
additional_dependencies: [ | ||
types-PyYAML, types-tqdm, types-pytz, | ||
types-requests, types-setuptools, | ||
] | ||
|
||
- repo: https://github.com/pycqa/flake8 | ||
rev: 7.1.1 | ||
hooks: | ||
- id: flake8 | ||
|
||
ci: | ||
autoupdate_schedule: weekly |
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
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,48 @@ | ||
[tool] | ||
[tool.poetry] | ||
name = "utilix" | ||
version = "0.9.1" | ||
description = "User-friendly interface to various utilities for XENON users" | ||
readme = "README.md" | ||
authors = [ | ||
"utilix developers", | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
] | ||
repository = "https://github.com/XENONnT/utilix" | ||
packages = [ | ||
{ include = "utilix" } | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.13" | ||
pymongo = "*" | ||
requests = "*" | ||
tqdm = "*" | ||
pandas = "*" | ||
commentjson = "*" | ||
simple_slurm = "*" | ||
pydantic = ">=1.10,<2.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.8", "setuptools>=61.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.black] | ||
line-length = 100 | ||
preview = true | ||
|
||
[tool.docformatter] | ||
recursive = true | ||
in-place = true | ||
wrap-summaries = 100 | ||
wrap-descriptions = 100 | ||
blank = true |
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,26 @@ | ||
[flake8] | ||
# Set maximum width of the line to 100 | ||
max-line-length = 100 | ||
|
||
# E203 whitespace before ':' | ||
# E402 module level import not at top of file | ||
# E501 line too long | ||
# E731 do not assign a lambda expression, use a def | ||
# F541 f-string is missing placeholders | ||
# F401 imported but unused | ||
# F403 unable to detect undefined names | ||
# F405 name may be undefined, or defined from star imports | ||
# W503 line break before binary operator | ||
# ignore = E203, E731, F541, W503 | ||
per-file-ignores = | ||
utilix/*__init__.py: F401, E402 | ||
tests/*: F403, F405 | ||
tests/test_import.py: F401 | ||
|
||
|
||
[docformatter] | ||
in-place = true | ||
blank = true | ||
style = sphinx | ||
wrap-summaries = 100 | ||
wrap-descriptions = 100 |
Oops, something went wrong.