-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop support for Python 3.6 and 3.7 (#161)
- Loading branch information
Showing
10 changed files
with
41 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -157,15 +157,15 @@ jobs: | |
# Xcookie generates an explicit list of environments that will be used | ||
# for testing instead of using the more concise matrix notation. | ||
include: | ||
- python-version: '3.6' | ||
- python-version: '3.8' | ||
install-extras: tests-strict,runtime-strict | ||
os: ubuntu-20.04 | ||
os: ubuntu-latest | ||
arch: auto | ||
- python-version: '3.6' | ||
- python-version: '3.8' | ||
install-extras: tests-strict,runtime-strict | ||
os: macos-13 | ||
os: macOS-latest | ||
arch: auto | ||
- python-version: '3.6' | ||
- python-version: '3.8' | ||
install-extras: tests-strict,runtime-strict | ||
os: windows-latest | ||
arch: auto | ||
|
@@ -189,14 +189,6 @@ jobs: | |
install-extras: tests | ||
os: windows-latest | ||
arch: auto | ||
- python-version: '3.6' | ||
install-extras: tests,optional | ||
os: ubuntu-20.04 | ||
arch: auto | ||
- python-version: '3.7' | ||
install-extras: tests,optional | ||
os: ubuntu-latest | ||
arch: auto | ||
- python-version: '3.8' | ||
install-extras: tests,optional | ||
os: ubuntu-latest | ||
|
@@ -221,14 +213,6 @@ jobs: | |
install-extras: tests,optional | ||
os: ubuntu-latest | ||
arch: auto | ||
- python-version: '3.6' | ||
install-extras: tests,optional | ||
os: macos-13 | ||
arch: auto | ||
- python-version: '3.7' | ||
install-extras: tests,optional | ||
os: macos-13 | ||
arch: auto | ||
- python-version: '3.8' | ||
install-extras: tests,optional | ||
os: macOS-latest | ||
|
@@ -253,14 +237,6 @@ jobs: | |
install-extras: tests,optional | ||
os: macOS-latest | ||
arch: auto | ||
- python-version: '3.6' | ||
install-extras: tests,optional | ||
os: windows-latest | ||
arch: auto | ||
- python-version: '3.7' | ||
install-extras: tests,optional | ||
os: windows-latest | ||
arch: auto | ||
- python-version: '3.8' | ||
install-extras: tests,optional | ||
os: windows-latest | ||
|
@@ -378,8 +354,8 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: github.event_name == 'push' && ! startsWith(github.event.ref, 'refs/tags') && ! startsWith(github.event.ref, 'refs/heads/release') | ||
needs: | ||
- build_purepy_wheels | ||
- build_and_test_sdist | ||
- build_purepy_wheels | ||
steps: | ||
- name: Checkout source | ||
uses: actions/[email protected] | ||
|
@@ -452,8 +428,8 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: github.event_name == 'push' && (startsWith(github.event.ref, 'refs/tags') || startsWith(github.event.ref, 'refs/heads/release')) | ||
needs: | ||
- build_purepy_wheels | ||
- build_and_test_sdist | ||
- build_purepy_wheels | ||
steps: | ||
- name: Checkout source | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ mod_name = "xdoctest" | |
repo_name = "xdoctest" | ||
rel_mod_parent_dpath = "./src" | ||
os = [ "all", "win", "linux", "osx",] | ||
min_python = '3.6' | ||
min_python = '3.8' | ||
author = "Jon Crall" | ||
author_email = "[email protected]" | ||
description = "A rewrite of the builtin doctest module" | ||
|
@@ -30,8 +30,6 @@ classifiers = [ | |
"License :: OSI Approved :: Apache Software License", | ||
# Supported Python versions | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters