Skip to content

Commit

Permalink
Fix/mypy issues (#54)
Browse files Browse the repository at this point in the history
* Fix mypy issues

* Rework docs

* Up
  • Loading branch information
barseghyanartur authored Dec 17, 2023
1 parent be61321 commit 51836d6
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 21 deletions.
18 changes: 1 addition & 17 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -112,22 +112,6 @@
}
],
"results": {
"Makefile": [
{
"type": "Secret Keyword",
"filename": "Makefile",
"hashed_secret": "ee783f2421477b5483c23f47eca1f69a1f2bf4fb",
"is_verified": true,
"line_number": 95
},
{
"type": "Secret Keyword",
"filename": "Makefile",
"hashed_secret": "1457a35245051927fac6fa556074300f4162ed66",
"is_verified": true,
"line_number": 98
}
],
"examples/django/article/tests.py": [
{
"type": "Secret Keyword",
Expand All @@ -138,5 +122,5 @@
}
]
},
"generated_at": "2023-12-15T00:15:38Z"
"generated_at": "2023-12-17T23:16:36Z"
}
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.6.5
-----
2023-12-18

- Improve docs.
- MyPy fixes.

0.6.4
-----
2023-12-16
Expand Down
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Update version ONLY here
VERSION := 0.6.4
VERSION := 0.6.5
SHELL := /bin/bash
# Makefile for project
VENV := ~/.virtualenvs/fake.py/bin/activate
Expand Down Expand Up @@ -40,6 +40,16 @@ install:
test: clean
source $(VENV) && pytest -vrx -s

test-all: test \
customization-test \
dataclasses-test \
django-test \
hypothesis-test \
lazyfuzzy-test \
pydantic-test \
sqlalchemy-test \
tortoise-test

customization-test:
source $(VENV) && cd examples/customization/ && python manage.py test

Expand Down
2 changes: 1 addition & 1 deletion fake.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
)

__title__ = "fake.py"
__version__ = "0.6.4"
__version__ = "0.6.5"
__author__ = "Artur Barseghyan <artur.barseghyan@gmail.com>"
__copyright__ = "2023 Artur Barseghyan"
__license__ = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "fake.py"
description = "Minimalistic, standalone alternative fake data generator with no dependencies."
readme = "README.rst"
version = "0.6.4"
version = "0.6.5"
dependencies = []
authors = [
{name = "Artur Barseghyan", email = "artur.barseghyan@gmail.com"},
Expand Down Expand Up @@ -142,7 +142,7 @@ ignore-path = [
]

[tool.pytest.ini_options]
minversion = "0.6.4"
minversion = "0.6.5"
addopts = [
"-ra",
"-vvv",
Expand Down

0 comments on commit 51836d6

Please sign in to comment.