Skip to content

Commit

Permalink
Remove Python 3.9 support from nailgun (#967)
Browse files Browse the repository at this point in the history
* Remove Python 3.9 support from nailgun

* Update merge_to_master.yml

* Update setup.py

* Change build and publish section in merge_to_master.yml

* Update setup.py

(cherry picked from commit 4694e95)
  • Loading branch information
LadislavVasina1 authored and web-flow committed Jul 24, 2023
1 parent af1a242 commit 306c8d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/merge_to_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, '3.10']
python-version: ['3.10', '3.11']
steps:
- name: Checkout Nailgun
uses: actions/checkout@v2
Expand Down Expand Up @@ -70,10 +70,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup python 3.8
- name: Setup python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: '3.10'
- name: Install pypa/build
run: python -m pip install build --user
- name: Build a binary wheel and a source tarball
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, '3.10']
python-version: ['3.10', '3.11']
steps:
- name: Checkout Nailgun
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
packages=find_packages(exclude=['docs', 'tests']),
install_requires=REQUIREMENTS,
python_requires='>=3.8',
python_requires='>=3.10',
)

0 comments on commit 306c8d5

Please sign in to comment.