From 40b03f92e28855f9b7fd6a886e6d5253972c98f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szczepan=20Cie=C5=9Blik?= Date: Sun, 17 Dec 2023 13:59:41 +0100 Subject: [PATCH 1/2] Version 2.7.0 --- HISTORY.rst | 6 ++++++ history/1699609698595784-0db2291 | 1 - history/1699609709341144-f161435 | 1 - history/1699638234308787-45de861 | 1 - history/1699638246045444-8a28355 | 1 - history/1699638249190193-1aa7841 | 1 - jsonmodels/__init__.py | 2 +- 7 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 history/1699609698595784-0db2291 delete mode 100644 history/1699609709341144-f161435 delete mode 100644 history/1699638234308787-45de861 delete mode 100644 history/1699638246045444-8a28355 delete mode 100644 history/1699638249190193-1aa7841 diff --git a/HISTORY.rst b/HISTORY.rst index 1603ba9..01c462a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +2.7.0 (2023-12-17) +++++++++++++++++++ + +* Added Python 3.12, PyPy 3.9 and 3.10 support. +* Removed Python 3.7 and PyPy 3.8 support. + 2.6.0 (2022-10-14) ++++++++++++++++++ diff --git a/history/1699609698595784-0db2291 b/history/1699609698595784-0db2291 deleted file mode 100644 index c738255..0000000 --- a/history/1699609698595784-0db2291 +++ /dev/null @@ -1 +0,0 @@ -Added Python 3.12 support. diff --git a/history/1699609709341144-f161435 b/history/1699609709341144-f161435 deleted file mode 100644 index 9b062e0..0000000 --- a/history/1699609709341144-f161435 +++ /dev/null @@ -1 +0,0 @@ -Removed Python 3.7 support. diff --git a/history/1699638234308787-45de861 b/history/1699638234308787-45de861 deleted file mode 100644 index 0a25069..0000000 --- a/history/1699638234308787-45de861 +++ /dev/null @@ -1 +0,0 @@ -Removed PyPy 3.8 support. diff --git a/history/1699638246045444-8a28355 b/history/1699638246045444-8a28355 deleted file mode 100644 index 8e089a9..0000000 --- a/history/1699638246045444-8a28355 +++ /dev/null @@ -1 +0,0 @@ -Added PyPy 3.9 support. diff --git a/history/1699638249190193-1aa7841 b/history/1699638249190193-1aa7841 deleted file mode 100644 index 51d1625..0000000 --- a/history/1699638249190193-1aa7841 +++ /dev/null @@ -1 +0,0 @@ -Added PyPy 3.10 support. diff --git a/jsonmodels/__init__.py b/jsonmodels/__init__.py index 38d4749..d5035e1 100644 --- a/jsonmodels/__init__.py +++ b/jsonmodels/__init__.py @@ -1,3 +1,3 @@ __author__ = "Szczepan Cieślik" __email__ = "szczepan.cieslik@gmail.com" -__version__ = "2.6.0" +__version__ = "2.7.0" From b61b9e25600b3c9ddd471185d0bc655c75869bb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szczepan=20Cie=C5=9Blik?= Date: Sun, 17 Dec 2023 14:17:02 +0100 Subject: [PATCH 2/2] Remove setup.py call (for Python 3.12) --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2551a7d..751ea72 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: - name: Tests run: | - python setup.py test + pytest - name: Upload coverage uses: codecov/codecov-action@v2