Skip to content

Commit f27fbb9

Browse files
authored
Merge pull request #10 from EGAMAGZ/python-313-support
Python 313 support
2 parents f7d88a8 + 4f1c569 commit f27fbb9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest, macos-latest]
15-
python-version: ['3.12', '3.11']
15+
python-version: ['3.13','3.12', '3.11']
1616

1717
steps:
1818
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ignori"
3-
version = "1.0.4"
3+
version = "1.1.0"
44
description = "Generate .gitignore file without leaving the terminal."
55
authors = ["Gamaliel Garcia <46827955+EGAMAGZ@users.noreply.github.com>"]
66
maintainers = ["Gamaliel Garcia <46827955+EGAMAGZ@users.noreply.github.com>"]
@@ -25,6 +25,7 @@ classifiers = [
2525
"Environment :: Console :: Curses",
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2829
"Operating System :: OS Independent",
2930
"Topic :: Software Development",
3031
"Topic :: Software Development :: Code Generators",

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[tox]
2-
envlist = py310,py311,py12
2+
envlist = py311,py12,py313
33
isolated_build = true
44

55
[gh-actions]
66
python=
77
3.11: py311,
8-
3.12: py312
8+
3.12: py312,
9+
3.13: py313
910

1011
[testenv]
1112
allowlist_externals=

0 commit comments

Comments
 (0)