Skip to content

Commit

Permalink
PKG #6 add py3.12, copyright to 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Feb 8, 2024
1 parent bfe9435 commit 80fd231
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
- "3.9"
- "3.10" # not 3.10 which truncates to 3.1
- "3.11"
- "3.12"
max-parallel: 5

steps:
Expand All @@ -68,6 +69,7 @@ jobs:
- name: Run tests with pytest & coverage
run: |
set -vxeuo pipefail
coverage run --concurrency=thread --parallel-mode -m pytest -vvv .
coverage combine
coverage report --precision 3
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ Fixes

* Fixed *math domain error* in standard deviation functions.

Maintenance
--------------

* Add Python 3.12

1.0.5
******

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[tool.black]
line-length = 115
target-version = ['py311']
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
Expand Down
2 changes: 1 addition & 1 deletion pysumreg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# -----------------------------------------------------------------------------
# :author: Pete R. Jemian
# :email: [email protected]
# :copyright: (c) 2014-2022, Pete R. Jemian
# :copyright: (c) 2014-2024, Pete R. Jemian
#
# Distributed under the terms of the Creative Commons Attribution 4.0 International Public License.
#
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ profile=black

[metadata]
name = pysumreg
copyright = 2022-2022, Pete R. Jemian
copyright = 2014-2024, Pete R. Jemian
description = Statistics of list of (x, y) pairs from calculator-style summation registers.
description_file = README.md
description_file_content_type = text/markdown
Expand All @@ -54,6 +54,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Bio-Informatics
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# -----------------------------------------------------------------------------
# :author: Pete R. Jemian
# :email: [email protected]
# :copyright: (c) 2014-2022, Pete R. Jemian
# :copyright: (c) 2014-2024, Pete R. Jemian
#
# Distributed under the terms of the Creative Commons Attribution 4.0 International Public License.
#
Expand Down

0 comments on commit 80fd231

Please sign in to comment.