From 7b15ddf5f282683ec1b259544431359a9659a106 Mon Sep 17 00:00:00 2001 From: nikolas Date: Wed, 5 Nov 2025 14:53:24 -0500 Subject: [PATCH 1/2] Update github actions versions --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6740e15..0638986 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -16,9 +16,9 @@ jobs: python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install Dependencies From 2aa69cef76e13e5243a6cba3ec6fc682c84763a5 Mon Sep 17 00:00:00 2001 From: Nikolas Nyby Date: Wed, 5 Nov 2025 14:56:17 -0500 Subject: [PATCH 2/2] :bookmark: release version 1.7.1 --- docs/changelog.rst | 4 ++++ docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 9fb50d6..a3ea1ab 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -85,3 +85,7 @@ here. For additional detail, read the complete `commit history`_. * Fixing 'requests.api' has no attribute 'Session' (#47) @vhelke * Fix get_proxy_url adding unnecessary '/' (#41) @seayjohnny * Fix a few typos in changelog (#45) @intgr + +**python-cas 1.7.1** ``[2025-11-05]`` + +* Removed dependency on package: six diff --git a/docs/conf.py b/docs/conf.py index df232b9..7e3c9ca 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,7 +46,7 @@ # General information about the project. project = 'Python CAS' -copyright = '2015, Ming Chen' +copyright = '2015-2025, Ming Chen' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -55,7 +55,7 @@ # The short X.Y version. version = '1.7' # The full version, including alpha/beta/rc tags. -release = '1.7.0' +release = '1.7.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index eaf3342..1beceb9 100755 --- a/setup.py +++ b/setup.py @@ -39,5 +39,5 @@ py_modules=['cas'], url='https://github.com/python-cas/python-cas', download_url ='https://github.com/python-cas/python-cas/releases', - version='1.7.0', + version='1.7.1', )