Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3', '3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3', '3.8', '3.9', '3.10', '3.11']
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,13 @@ classifiers = [
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
# md file="versions.snippet"
# _Python 3.x, 3.7, 3.8, 3.9, 3.10, 3.11 supported._
# _Python 3.x, 3.8, 3.9, 3.10, 3.11 supported._
# /md
dependencies = [
"click>=7.1",
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,11 @@
'Intended Audience :: Information Technology',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'],
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'],
packages=setuptools.find_packages(),
entry_points={
'mkdocs.plugins': ["simple = mkdocs_simple_plugin.plugin:SimplePlugin"],
'console_scripts': ["mkdocs_simple_gen = mkdocs_simple_plugin.generator:main"]})


2 changes: 0 additions & 2 deletions tests/integration_test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ assertParGrep() {
cat site/$1/index.html | \
awk '/<div class="col-md-9" role="main">/,/<footer class="col-md-12">/' | \
sed '1d; $d' | head -n -3 > site/$1.grepout
# BANDAID: fix mkdocstrings id order for 3.6/3.7
sed -i 's/<h3 class="doc doc-heading" id="module.main">/<h3 id="module.main" class="doc doc-heading">/g' site/$1.grepout
echo "--------------"
echo "-_---File-----"
echo `pwd`/site/$1/index.html
Expand Down
13 changes: 6 additions & 7 deletions tests/run_tests_local.sh
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
#!/bin/bash
# md file="local_tests.snippet" content="^#?\s?(.*)"
# ### Different Python versions
#
#
# You can even test the package with different versions of python in a container
# by running the test_local script. This builds a docker container with the
# version of python you specify and runs the integration tests within the
# container.
#
# by running the test_local script. This builds a docker container with the
# version of python you specify and runs the integration tests within the
# container.
#
# ```bash
# ./tests/test_local.sh
# ```
# {% include "versions.snippet" %}
#
#
# <details>
# <summary>Code</summary>
#
Expand Down Expand Up @@ -39,7 +39,6 @@ if [[ ! -z "$PYTHON_V_ONLY" ]]; then
docker_run_integration_tests "$PYTHON_V_ONLY"
else
docker_run_integration_tests "3"
docker_run_integration_tests "3.7"
docker_run_integration_tests "3.8"
docker_run_integration_tests "3.9"
docker_run_integration_tests "3.10"
Expand Down