Skip to content

Commit

Permalink
Merge branch '33-update-minimal-version-of-python' into 'master'
Browse files Browse the repository at this point in the history
Resolve "montée de version python 3.8 par défaut"

Closes #33

See merge request 3d/PandoraBox/mc-cnn!45
  • Loading branch information
lecontm committed Jan 30, 2024
2 parents e54d313 + 7eee595 commit e8f172f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mccnn_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## Unreleased
## 1.2.2 (January 2024)

### Changed
- Update of the minimal version for python. [#33]

## 1.2.1 (November 2023)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export BROWSER_PYSCRIPT
BROWSER := python -c "$$BROWSER_PYSCRIPT"

# Python global variables definition
PYTHON_VERSION_MIN = 3.7
PYTHON_VERSION_MIN = 3.8

PYTHON=$(shell command -v python3)

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ classifiers =


[options]
python_requires = >=3.7
python_requires = >=3.8

setup_requires =
setuptools>=65.5
Expand Down

0 comments on commit e8f172f

Please sign in to comment.