Skip to content

Commit

Permalink
📝 Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fcurella committed Feb 10, 2025
1 parent adae52d commit 94e26f2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ jobs:
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down Expand Up @@ -175,7 +174,6 @@ jobs:
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down Expand Up @@ -223,7 +221,6 @@ jobs:
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changelog

### [v35.2.1 - 2025-02-10](https://github.com/joke2k/faker/compare/v35.2.0...v35.2.1)

* Remove invalid word from `ja_JP` lorem provider. Thanks @kymckay
* Fix typing for `tar` provider.

### [v35.2.0 - 2025-01-30](https://github.com/joke2k/faker/compare/v35.1.0...v35.2.0)

* Add various German localization. Thanks @ChristinaRau.
Expand Down
6 changes: 1 addition & 5 deletions faker/typing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import dataclasses
import sys

from datetime import date, datetime, timedelta
from typing import Sequence, Union
Expand All @@ -11,10 +10,7 @@

from typing_extensions import Literal, TypeVar # type: ignore

if sys.version_info >= (3, 9):
from collections import OrderedDict as OrderedDictType
else:
from typing import OrderedDict as OrderedDictType
from collections import OrderedDict as OrderedDictType


class CreditCard:
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py{38,39,310,311,312,313,py3},alpine,flake8,checkmanifest,isort,mypy,doc8
envlist=py{39,310,311,312,313,py3},alpine,flake8,checkmanifest,isort,mypy,doc8
skip_missing_interpreters = true

[testenv]
Expand Down Expand Up @@ -41,7 +41,7 @@ commands =
[testenv:mypy]
basepython = python
deps =
mypy==0.910
mypy==1.15.0
commands =
mypy --install-types --non-interactive --config mypy.ini faker

Expand Down

0 comments on commit 94e26f2

Please sign in to comment.