Skip to content

Commit bd965fc

Browse files
authored
Merge pull request #20521 from mvdbeek/bump_python_for_test_galaxy_packages_for_pulsar.yaml
[25.0] Bump up python for for pulsar package tests
2 parents d95f823 + b221598 commit bd965fc

File tree

6 files changed

+7
-12
lines changed

6 files changed

+7
-12
lines changed

.github/workflows/test_galaxy_packages_for_pulsar.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ concurrency:
1616
jobs:
1717
test:
1818
name: Test
19-
runs-on: ubuntu-22.04 # Python 3.7 is not available via setup-python on ubuntu >=24.04
19+
runs-on: ubuntu-latest
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: ['3.7'] # don't upgrade, see https://github.com/galaxyproject/galaxy/pull/16649
23+
python-version: ['3.8'] # don't upgrade, see https://github.com/galaxyproject/galaxy/pull/16649
2424
steps:
2525
- uses: actions/checkout@v4
2626
with:

packages/job_metrics/setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ classifiers =
99
Natural Language :: English
1010
Operating System :: POSIX
1111
Programming Language :: Python :: 3
12-
Programming Language :: Python :: 3.7
1312
Programming Language :: Python :: 3.8
1413
Programming Language :: Python :: 3.9
1514
Programming Language :: Python :: 3.10
@@ -37,7 +36,7 @@ install_requires =
3736
galaxy-util
3837
backports.zoneinfo;python_version<'3.9'
3938
packages = find:
40-
python_requires = >=3.7
39+
python_requires = >=3.8
4140

4241
[options.packages.find]
4342
exclude =

packages/objectstore/setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ classifiers =
99
Natural Language :: English
1010
Operating System :: POSIX
1111
Programming Language :: Python :: 3
12-
Programming Language :: Python :: 3.7
1312
Programming Language :: Python :: 3.8
1413
Programming Language :: Python :: 3.9
1514
Programming Language :: Python :: 3.10
@@ -38,7 +37,7 @@ install_requires =
3837
pydantic>=2,!=2.6.0,!=2.6.1
3938
PyYAML
4039
packages = find:
41-
python_requires = >=3.7
40+
python_requires = >=3.8
4241

4342
[options.packages.find]
4443
exclude =

packages/tool_util/setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ classifiers =
99
Natural Language :: English
1010
Operating System :: POSIX
1111
Programming Language :: Python :: 3
12-
Programming Language :: Python :: 3.7
1312
Programming Language :: Python :: 3.8
1413
Programming Language :: Python :: 3.9
1514
Programming Language :: Python :: 3.10
@@ -46,7 +45,7 @@ install_requires =
4645
sortedcontainers
4746
typing-extensions
4847
packages = find:
49-
python_requires = >=3.7
48+
python_requires = >=3.8
5049

5150
[options.entry_points]
5251
console_scripts =

packages/tool_util_models/setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ classifiers =
99
Natural Language :: English
1010
Operating System :: POSIX
1111
Programming Language :: Python :: 3
12-
Programming Language :: Python :: 3.7
1312
Programming Language :: Python :: 3.8
1413
Programming Language :: Python :: 3.9
1514
Programming Language :: Python :: 3.10
@@ -37,7 +36,7 @@ install_requires =
3736
pydantic>=2,!=2.6.0,!=2.6.1
3837
typing-extensions
3938
packages = find:
40-
python_requires = >=3.7
39+
python_requires = >=3.8
4140

4241
[options.entry_points]
4342
console_scripts =

packages/util/setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ classifiers =
99
Natural Language :: English
1010
Operating System :: POSIX
1111
Programming Language :: Python :: 3
12-
Programming Language :: Python :: 3.7
1312
Programming Language :: Python :: 3.8
1413
Programming Language :: Python :: 3.9
1514
Programming Language :: Python :: 3.10
@@ -46,7 +45,7 @@ install_requires =
4645
typing-extensions
4746
zipstream-new
4847
packages = find:
49-
python_requires = >=3.7
48+
python_requires = >=3.8
5049

5150
[options.extras_require]
5251
image-util =

0 commit comments

Comments
 (0)