Skip to content

Commit

Permalink
Moving toward 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amol- committed Jan 14, 2025
1 parent a4f415b commit 601f9f7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions devtools/gearbox/quickstart/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ def take_action(self, opts):
print(dist)
return

import imp
import importlib.util
try:
if imp.find_module(opts.package):
if importlib.util.find_spec(opts.package):
print('The package name "%s" is already in use'
% opts.package)
return
Expand Down
11 changes: 0 additions & 11 deletions setup.cfg

This file was deleted.

7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
]

install_requirements = [
'TurboGears2 >= 2.4.3',
'TurboGears2 >= 2.5.0',
'gearbox >= 0.1.1',
'backlash >= 0.0.7',
'tgext.debugbar',
]

setup(
name='tg.devtools',
version="2.4.3",
version="2.5.0",
description="",
long_description="""""",
classifiers=[],
keywords='turbogears',
author="TurboGears Team 2008-2019",
author="TurboGears Team 2008-2025",
author_email="[email protected]",
url="http://www.turbogears.org",
license="MIT",
Expand All @@ -44,7 +44,6 @@
'tgshell = devtools.gearbox.tgshell:ShellCommand',
],
},
test_suite='nose.collector',
tests_require = test_requirements,
extras_require={
'testing': test_requirements,
Expand Down

0 comments on commit 601f9f7

Please sign in to comment.