Skip to content

Commit 453a2e1

Browse files
committed
CHANGELOG updated
1 parent b2f3ffc commit 453a2e1

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: [3.7, 3.8, 3.9, "3.10"]
17+
python-version: [3.9, "3.10", 3.11, 3.12]
1818

1919
steps:
2020
- uses: actions/checkout@v2

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Unreleased
66
----------
77
+ Added virtual environment creation on project rollout.
88
+ CLI. Added command.
9+
* Added QA for Py 3.11, 3.12.
10+
* Dropped QA for Py 3.7, 3.8.
911
* Fixed package name availability check.
1012

1113

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Description
2121
Requirements
2222
------------
2323

24-
1. Python 3.7+
24+
1. Python 3.9+
2525

2626

2727
Table of Contents

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ def get_version():
6060
'Operating System :: OS Independent',
6161
'Programming Language :: Python',
6262
'Programming Language :: Python :: 3',
63-
'Programming Language :: Python :: 3.7',
64-
'Programming Language :: Python :: 3.8',
6563
'Programming Language :: Python :: 3.9',
6664
'Programming Language :: Python :: 3.10',
65+
'Programming Language :: Python :: 3.11',
66+
'Programming Language :: Python :: 3.12',
6767
],
6868
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See http://tox.readthedocs.org/en/latest/examples.html for samples.
22
[tox]
3-
envlist = py{37,38,39,310}
3+
envlist = py{39,310,311,312}
44

55
skip_missing_interpreters = True
66

0 commit comments

Comments
 (0)