Skip to content

Commit

Permalink
Add official support for python 3.12 (#1952)
Browse files Browse the repository at this point in the history
  • Loading branch information
pfouque authored Nov 20, 2023
1 parent a2efb72 commit 6ad82fc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
needs: [flake8, isort, black, doc8, checkmanifest, typing]
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "pypy-3.9"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
needs: [flake8, isort, black, doc8, checkmanifest, typing]
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
arch: ["x86", "x64"]

steps:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

### Unreleased

* Add official support for Python 3.12

### [v20.0.3 - 2023-11-14](https:/joke2k/faker/compare/v20.0.2...v20.0.3)

* Make `unix_time` always return floats.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py{38,39,310,311,py3},alpine,flake8,checkmanifest,isort,mypy,doc8
envlist=py{38,39,310,311,312,py3},alpine,flake8,checkmanifest,isort,mypy,doc8
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit 6ad82fc

Please sign in to comment.