Skip to content

Commit

Permalink
Merge branch 'production'
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmckee committed Oct 6, 2023
2 parents 30755c8 + 0bf58a9 commit 096fb86
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 26 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
id: "setup-python"
uses: "actions/setup-python@v4"
with:
python-version: "3.11"
python-version: "3.12"
cache: "pip"
cache-dependency-path: |
.github/workflows/ci.yaml
Expand Down Expand Up @@ -112,21 +112,22 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
tox-extras: [""]

include:
# Test Windows.
- os:
name: "Windows"
value: "windows-latest"
python-version: "3.11"
python-version: "3.12"
tox-extras: ""

# Test Mac.
- os:
name: "Mac"
value: "macos-latest"
python-version: "3.11"
python-version: "3.12"
tox-extras: ""

# Test minimum dependencies.
Expand All @@ -138,7 +139,7 @@ jobs:
- os:
name: "Linux"
value: "ubuntu-latest"
python-version: "3.11"
python-version: "3.12"
tox-extras: "-minimum_flask"

steps:
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,27 @@ Unreleased changes are documented in files in the `changelog.d`_ directory.

.. scriv-insert-here
.. _changelog-0.13.0rc2:

0.13.0rc2 — 2023-10-06
======================

Python support
--------------

- Support Python 3.12.
- Drop support for Python 3.7.

Development
-----------

- Remove unused dependencies.

Dependencies
------------

- Raise the minimum Flask version to 2.3.0, which dropped support for Python 3.7.

.. _changelog-0.13.0rc1:

0.13.0rc1 — 2023-07-24
Expand Down
4 changes: 0 additions & 4 deletions changelog.d/20230915_155034_kurtmckee_updates.rst

This file was deleted.

16 changes: 0 additions & 16 deletions changelog.d/20231003_071121_kurtmckee.rst

This file was deleted.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "globus-action-provider-tools"
version = "0.13.0rc1"
version = "0.13.0rc2"
description = "Tools to help developers build services that implement the Action Provider specification."
authors = [
"Kurt McKee <[email protected]>",
Expand Down Expand Up @@ -100,5 +100,5 @@ filterwarnings = [
"ignore:The '__version__' attribute is deprecated:DeprecationWarning",

# dateutil, used by freezegun during testing, has a Python 3.12 compatibility issue.
"ignore:datetime.utcfromtimestamp\\(\\) is deprecated:DeprecationWarning",
"ignore:datetime.datetime.utcfromtimestamp\\(\\) is deprecated:DeprecationWarning",
]

0 comments on commit 096fb86

Please sign in to comment.