Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove python3.7 support #26

Merged
merged 1 commit into from
Jun 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand All @@ -42,29 +41,17 @@ jobs:
- run: pip${{matrix.python-version}} install vmklib>=1.8.0

- run: mk python-sa-types
if: |
matrix.python-version != '3.7'
|| matrix.system != 'windows-latest'

- name: lint and build
run: mk python-lint python-sa yaml python-build-once
env:
PY_LINT_MYPY_EXTRA_ARGS: --no-incremental
if: |
matrix.python-version != '3.7'
|| matrix.system != 'windows-latest'

- run: mk python-test
env:
PY_TEST_EXTRA_ARGS: --cov-report=xml
if: |
matrix.python-version != '3.7'
|| matrix.system != 'windows-latest'

- uses: codecov/codecov-action@main
if: |
matrix.python-version != '3.7'
|| matrix.system != 'windows-latest'

- run: mk pypi-upload-ci
env:
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
=====================================
generator=datazen
version=3.1.2
hash=3c7a54d3f5dd7f524b8ad29c1dee448d
hash=6b71feec72246dec0666fa600f11f4af
=====================================
-->

Expand All @@ -23,7 +23,6 @@ See also: [generated documentation](https://vkottler.github.io/python/pydoc/rcmp

This package is tested with the following Python minor versions:

* [`python3.7`](https://docs.python.org/3.7/)
* [`python3.8`](https://docs.python.org/3.8/)
* [`python3.9`](https://docs.python.org/3.9/)
* [`python3.10`](https://docs.python.org/3.10/)
Expand Down
2 changes: 1 addition & 1 deletion local/configs/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ author_info:
name: Vaughn Kottler
email: vaughnkottler@gmail.com
username: vkottler
versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
versions: ["3.8", "3.9", "3.10", "3.11"]

systems:
- macos-latest
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ name = "rcmpy"
version = "1.5.2"
description = "A configuration-file management system."
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"
authors = [
{name = "Vaughn Kottler", email = "vaughnkottler@gmail.com"}
]
maintainers = [
{name = "Vaughn Kottler", email = "vaughnkottler@gmail.com"}
]
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.2
# hash=dc0d9f835ecbdaf7ba7d62dc617acb8d
# hash=41029b1d344eff0720907ad9b29da09b
# =====================================

"""
Expand All @@ -28,7 +28,6 @@
"version": VERSION,
"description": DESCRIPTION,
"versions": [
"3.7",
"3.8",
"3.9",
"3.10",
Expand Down