Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Changed the default Python version from 3.11 to 3.12. ([#152](https://github.com/heroku/buildpacks-python/pull/152))
- Updated the default Python version from 3.11.6 to 3.12.1. ([#152](https://github.com/heroku/buildpacks-python/pull/152) and [#154](https://github.com/heroku/buildpacks-python/pull/154))
- Updated wheel from 0.41.3 to 0.42.0. ([#150](https://github.com/heroku/buildpacks-python/pull/150))

## [0.7.3] - 2023-11-06
Expand Down
2 changes: 1 addition & 1 deletion src/python_version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use std::path::Path;
pub(crate) const DEFAULT_PYTHON_VERSION: PythonVersion = PythonVersion {
major: 3,
minor: 12,
patch: 0,
patch: 1,
};

/// Representation of a specific Python `X.Y.Z` version.
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/python_3.11/runtime.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python-3.11.6
python-3.11.7
2 changes: 1 addition & 1 deletion tests/fixtures/python_3.12/runtime.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python-3.12.0
python-3.12.1
4 changes: 2 additions & 2 deletions tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const LATEST_PYTHON_3_7: &str = "3.7.17";
const LATEST_PYTHON_3_8: &str = "3.8.18";
const LATEST_PYTHON_3_9: &str = "3.9.18";
const LATEST_PYTHON_3_10: &str = "3.10.13";
const LATEST_PYTHON_3_11: &str = "3.11.6";
const LATEST_PYTHON_3_12: &str = "3.12.0";
const LATEST_PYTHON_3_11: &str = "3.11.7";
const LATEST_PYTHON_3_12: &str = "3.12.1";
const DEFAULT_PYTHON_VERSION: &str = LATEST_PYTHON_3_12;

const DEFAULT_BUILDER: &str = "heroku/builder:22";
Expand Down

0 comments on commit c263156

Please sign in to comment.