Skip to content

Commit

Permalink
Merge pull request #36 from cicirello/bump-python
Browse files Browse the repository at this point in the history
Bump python version
  • Loading branch information
cicirello authored Mar 4, 2022
2 parents 69bfe93 + 5765180 commit 9b03432
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.8'
python-version: '3.10'

- name: Run Python unit tests
run: python3 -u -m unittest tests/tests.py
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] - 2021-07-29
## [Unreleased] - 2022-03-04

### Added

### Changed
* Bumped Python to 3.10.
* Bumped base Docker image to pyaction 4.2.0.
* Now pulls base Docker image from the GitHub Container Registry rather
than Docker Hub under the assumption that pulling from GitHub from
GitHub Actions is likely faster than from Docker Hub.

### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2021 Vincent A. Cicirello
# Copyright (c) 2021-2022 Vincent A. Cicirello
# https://www.cicirello.org/
# Licensed under the MIT License
FROM cicirello/pyaction:4
FROM ghcr.io/cicirello/pyaction:4.2.0
COPY generatesitemap.py /generatesitemap.py
ENTRYPOINT ["/generatesitemap.py"]

0 comments on commit 9b03432

Please sign in to comment.