Skip to content

Commit

Permalink
ci: drop Python < 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
svinota committed Feb 10, 2024
1 parent 789c23b commit b21dc32
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,13 @@ jobs:
steps:
- run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE
- uses: actions/checkout@v4
- run: sudo make nox session=linux-python3.6
- run: sudo make nox session=linux-python3.8
- run: sudo make nox session=linux-python3.10
- run: sudo make nox session=linux-python3.12
- run: sudo make nox session=linux
linux-ubuntu-22:
runs-on: linux-ubuntu-22
steps:
- run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE
- uses: actions/checkout@v4
- run: sudo make nox session=linux-python3.6
- run: sudo make nox session=linux-python3.10
- run: sudo make nox session=linux
openbsd:
runs-on: OpenBSD
steps:
Expand Down
7 changes: 5 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
'lab',
'neutron',
'integration',
'linux-python3.6',
'linux-python3.8',
'linux-python3.9',
'linux-python3.10',
'linux-python3.11',
'linux-python3.12',
'minimal',
]
Expand Down Expand Up @@ -245,7 +246,9 @@ def integration(session, config):
session.run(*options('test_integration', config))


@nox.session(python=['python3.6', 'python3.8', 'python3.10', 'python3.12'])
@nox.session(
python=['python3.8', 'python3.9', 'python3.10', 'python3.11', 'python3.12']
)
@add_session_config
def linux(session, config):
'''Run Linux functional tests. Requires root to run all the tests.'''
Expand Down
2 changes: 0 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ classifiers =
Intended Audience :: System Administrators
Intended Audience :: Telecommunications Industry
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand Down

0 comments on commit b21dc32

Please sign in to comment.