Skip to content

Commit

Permalink
Merge pull request #10 from EGAMAGZ/python-313-support
Browse files Browse the repository at this point in the history
Python 313 support
  • Loading branch information
EGAMAGZ authored Dec 9, 2024
2 parents f7d88a8 + 4f1c569 commit f27fbb9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
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:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.12', '3.11']
python-version: ['3.13','3.12', '3.11']

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ignori"
version = "1.0.4"
version = "1.1.0"
description = "Generate .gitignore file without leaving the terminal."
authors = ["Gamaliel Garcia <[email protected]>"]
maintainers = ["Gamaliel Garcia <[email protected]>"]
Expand All @@ -25,6 +25,7 @@ classifiers = [
"Environment :: Console :: Curses",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[tox]
envlist = py310,py311,py12
envlist = py311,py12,py313
isolated_build = true

[gh-actions]
python=
3.11: py311,
3.12: py312
3.12: py312,
3.13: py313

[testenv]
allowlist_externals=
Expand Down

0 comments on commit f27fbb9

Please sign in to comment.