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

Drop support for python 3.6 #174

Merged
merged 4 commits into from Jun 24, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, "3.10"]
# exclude: #If you want to do this...
# - os: macos-latest
# python-version: 3.6:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: "3.9" # 3.10 doesn't work with sphinx yet
python-version: "3.x" # Latest python release
- name: Install dependencies
run: make init
- name: Build docs
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -4,6 +4,12 @@ Changelog
`Unreleased <https://github.com/staticjinja/staticjinja/compare/main>`_
-----------------------------------------------------------------------

Changed
^^^^^^^

* Stop testing for Python 3.6, add testing for Python 3.10. See
https://github.com/staticjinja/staticjinja/pull/174

`4.1.3 <https://github.com/staticjinja/staticjinja/compare/4.1.2...4.1.3>`_ (2022-06-03)
----------------------------------------------------------------------------------------

Expand Down