Skip to content

Commit

Permalink
* added reload_input to pbook
Browse files Browse the repository at this point in the history
  * added memory warning and -y to pathena/prun
  • Loading branch information
tmaeno committed Nov 1, 2023
1 parent 6b297b4 commit bd797f7
Show file tree
Hide file tree
Showing 12 changed files with 4,761 additions and 2,811 deletions.
82 changes: 0 additions & 82 deletions .github/workflows/condapublish.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/pythonpublish.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
repos:

- repo: https://github.com/psf/black
rev: 23.9.1
hooks:
- id: black
types: [python]
args: ["--config", "packages/light/pyproject.toml"]

- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort (python)
args: ["--settings-path", "packages/light/pyproject.toml"]
4 changes: 4 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
** Release Notes

1.5.67
* added reload_input to pbook
* added memory warning and -y to pathena/prun

1.5.66
* fixed FileSpec import

Expand Down
15 changes: 15 additions & 0 deletions packages/light/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,18 @@ directory = "dist"

[tool.hatch.build.targets.wheel]
packages = ["pandaclient"]


[tool.black]
line-length=160

[tool.autopep8]
# https://pypi.org/project/autopep8/#pyproject-toml
max_line_length = 160
ignore = ["E501", "W6"]
in-place = true
recursive = true
aggressive = 3

[tool.isort]
profile = "black"
Loading

0 comments on commit bd797f7

Please sign in to comment.