Skip to content

Commit

Permalink
update to python3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
shapiromatron committed Oct 17, 2023
1 parent caed264 commit 37e9353
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-enviro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.11"]
python-version: ["3.12"]
os: [ubuntu-22.04, windows-2022]
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.11"]
python-version: ["3.12"]
os: ["ubuntu-22.04"]
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pyscaffold

An opinionated starter template for setting up a python 3.11+ package with a CLI.
An opinionated starter template for setting up a python 3.12+ package with a CLI.

NOTE: this project is unrelated to the excellent [PyScaffold](https://pypi.org/project/PyScaffold/) project. This repo will likely not be published to pypi, and handles a much smaller and more narrow use case. Apologies in advance for the confusion in naming.

Expand All @@ -18,7 +18,7 @@ AKA, the manual [cookiecutter](https://github.com/cookiecutter/cookiecutter)...

## Quickstart

Make sure you have python 3.11 available and on your path. Then:
Make sure you have python 3.12 available and on your path. Then:

```bash
# update pip
Expand All @@ -38,7 +38,7 @@ pyscaffold bottles --num 20

## Developer setup

Make sure you have python 3.11 available and on your path. Then:
Make sure you have python 3.12 available and on your path. Then:

```bash
# clone project
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ name = "pyscaffold"
authors = [{name = "My pyscaffold", email = "[email protected]"}]
dynamic = ["version", "description"]
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.12"
license = { file="LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Private :: Do Not Upload",
]
dependencies = [
Expand Down

0 comments on commit 37e9353

Please sign in to comment.