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-build-msi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.11]
python-version: [3.12]
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ env:
NIFCLOUD_STORAGE_SECRET_ACCESS_KEY: ${{ secrets.NIFCLOUD_STORAGE_SECRET_ACCESS_KEY }}
jobs:
test:
# ubuntu-24.04 later does not support Python 3.7
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
max-parallel: 1
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.11', '3.13']
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ARG PYTHON_VERSION_MAJOR="3"
ARG PYTHON_VERSION_MINOR="11"
ARG PYTHON_VERSION_PATCH="3"
ARG PYTHON_VERSION_MINOR="13"
ARG PYTHON_VERSION_PATCH="2"
ARG PYTHON_VERSION="${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}.${PYTHON_VERSION_PATCH}"

ARG UV_VERSION="0.5.24"

FROM python:${PYTHON_VERSION}-alpine3.18 AS builder
FROM python:${PYTHON_VERSION}-alpine3.21 AS builder
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/

WORKDIR /home/nifcloud
Expand All @@ -15,7 +15,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --frozen --no-dev


FROM python:${PYTHON_VERSION}-alpine3.18
FROM python:${PYTHON_VERSION}-alpine3.21
ARG PYTHON_VERSION_MAJOR
ARG PYTHON_VERSION_MINOR
COPY --from=builder \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Universal Command Line Interface for NIFCLOUD Services

## Requirements

* Python 3.7 or later
* Python 3.8 or later

## How to Install

Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,26 @@ classifiers = [
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
license = {text = "Apache-2.0"}
dependencies = [
"awscli==1.29.1",
"nifcloud==1.15.0",
"awscli==1.38.10",
"nifcloud==1.16.0",
"pyyaml==5.3.1",
]
requires-python = ">=3.7.4"
requires-python = ">=3.8"

[dependency-groups]
dev = [
"isort",
"flake8",
"cx-freeze==6.15.16",
"cx-freeze==7.2.10",
"sphinx==5.1.1 ; sys_platform != 'win32'",
"sphinx-rtd-theme ; sys_platform != 'win32'",
"pytest",
Expand Down
Loading