Skip to content

Commit 77ea379

Browse files
committed
Add 3.12 python support, drop 3.7 support
1 parent e8d5df9 commit 77ea379

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version:
17-
- "3.7"
17+
- "3.8"
1818
steps:
1919
- uses: actions/checkout@v2.3.4
2020
- name: Set up Python ${{ matrix.python-version }}
@@ -42,11 +42,11 @@ jobs:
4242
strategy:
4343
matrix:
4444
python-version:
45-
- "3.7"
4645
- "3.8"
4746
- "3.9"
4847
- "3.10"
4948
- "3.11"
49+
- "3.12"
5050
steps:
5151
- uses: actions/checkout@v2.3.4
5252
- name: Set up Python ${{ matrix.python-version }}
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ubuntu-latest
6565
strategy:
6666
matrix:
67-
python-version: ["3.7"]
67+
python-version: ["3.8"]
6868
test-program: [snakemake, miniwdl]
6969
steps:
7070
- uses: actions/checkout@v2.3.4

HISTORY.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
Changelog
33
==========
44

5-
version 2.0.2
6-
---------------------------
7-
+ Fixed a bug where pytest 8.1+ would raise a ``PluginValidationError`` because
8-
the hook ``pytest_collect_file()`` has finally dropped the deprecated
9-
argument ``path`` from its specification.
105

116
.. Newest changes should be on top.
127
138
.. This document is user facing. Please word the changes in such a way
149
.. that users understand how the changes affect the new version.
1510
16-
version 2.1.0-dev
11+
version 2.1.0
1712
---------------------------
13+
+ Python version 3.7 support is dropped because it is deprecated. Python
14+
version 3.12 was added.
15+
+ Fixed a bug where pytest 8.1+ would raise a ``PluginValidationError`` because
16+
the hook ``pytest_collect_file()`` has finally dropped the deprecated
17+
argument ``path`` from its specification.
1818
+ Add extract_md5sum check on uncompressed contents of compressed output files.
1919
Gzipped files contain a timestamp which makes it hard to directly compare the
2020
md5sums of gzipped files.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
classifiers=[
4040
"Programming Language :: Python :: 3 :: Only",
4141
"Programming Language :: Python :: 3",
42-
"Programming Language :: Python :: 3.7",
4342
"Programming Language :: Python :: 3.8",
4443
"Programming Language :: Python :: 3.9",
4544
"Programming Language :: Python :: 3.10",
4645
"Programming Language :: Python :: 3.11",
46+
"Programming Language :: Python :: 3.12",
4747
"Development Status :: 5 - Production/Stable",
4848
"License :: OSI Approved :: "
4949
"GNU Affero General Public License v3 or later (AGPLv3+)",

0 commit comments

Comments
 (0)