Skip to content

Commit

Permalink
feat: allows Python 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
claymcleod committed Oct 17, 2023
1 parent 61bc5a9 commit e123898
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ on: push
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: python -m pip install --upgrade poetry
- name: Install Dependencies
Expand Down
10 changes: 4 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
[tool.poetry]
name = "trapdoor"
version = "0.5.0"
version = "0.6.0"
description = "Turn-key configuration file management for Python packages."
authors = ["Clay McLeod <clay.l.mcleod@gmail.com>"]
license = "MIT"
packages = [
{ include = "trapdoor" },
]
packages = [{ include = "trapdoor" }]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
python = "^3"
toml = "^0.10.2"

[tool.poetry.dev-dependencies]
Expand All @@ -32,4 +30,4 @@ commit_message = ""
commit_subject = "chore: bumping version to v{version}"
upload_to_release = "false"
version_source = "commit"
version_variable = "pyproject.toml:version"
version_variable = "pyproject.toml:version"

0 comments on commit e123898

Please sign in to comment.