Skip to content

Commit

Permalink
rel 2024 update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
FredHappyface committed Jan 7, 2024
1 parent 9a3b4b8 commit 747372c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 21 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All major and minor version changes will be documented in this file. Details of
patch-level version changes can be found in [commit messages](../../commits/master).

## 2024 - 2024/01/07

- update dependencies

## 2023.1 - 2023/08/31

- Update deps
Expand Down
21 changes: 7 additions & 14 deletions documentation/reference/blackt/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ Convert spaces to tabs of vice versa
#### Signature

```python
def convertFile(file: str, find: str, replace: str):
...
def convertFile(file: str, find: str, replace: str): ...
```


Expand All @@ -45,8 +44,7 @@ Convert spaces to tabs
#### Signature

```python
def convertSpacesToTabs(files: list[str], find: str, replace: str):
...
def convertSpacesToTabs(files: list[str], find: str, replace: str): ...
```


Expand All @@ -60,8 +58,7 @@ Convert tabs to spaces
#### Signature

```python
def convertTabsToSpaces(files: list[str], find: str, replace: str):
...
def convertTabsToSpaces(files: list[str], find: str, replace: str): ...
```


Expand All @@ -75,8 +72,7 @@ Find source files to process
#### Signature

```python
def findSourceFiles() -> list[str]:
...
def findSourceFiles() -> list[str]: ...
```


Expand All @@ -90,8 +86,7 @@ Main entry point
#### Signature

```python
def main():
...
def main(): ...
```


Expand All @@ -105,8 +100,7 @@ Print the output
#### Signature

```python
def printOutput(out: str):
...
def printOutput(out: str): ...
```


Expand All @@ -120,8 +114,7 @@ Run black with forwarded args
#### Signature

```python
def runBlack(unknown: list[str]) -> tuple[int, str]:
...
def runBlack(unknown: list[str]) -> tuple[int, str]: ...
```


Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "blackt"
license = "mit"
version = "2023.1"
version = "2024"
description = "Black but with tabs"
authors = ["FredHappyface"]
classifiers = [
Expand All @@ -21,7 +21,7 @@ readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
black = "<24,>=23.7.0"
black = "<24,>=23.12.1"

[tool.poetry.scripts]
blackt = 'blackt:main'
Expand All @@ -30,10 +30,10 @@ blackt = 'blackt:main'


[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pylint = "^2.17.5"
handsdown = "^2.0.1"
coverage = "^7.3.0"
pytest = "^7.4.4"
pylint = "^3.0.3"
handsdown = "^2.1.0"
coverage = "^7.4.0"

[tool.black]
line-length = 100
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
black<24,>=23.7.0
black<24,>=23.12.1

0 comments on commit 747372c

Please sign in to comment.