Skip to content

Commit

Permalink
Update Pythons, pin Ubuntu and service database images
Browse files Browse the repository at this point in the history
  • Loading branch information
saaj committed Aug 23, 2023
1 parent aea56b7 commit 184ff54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,29 @@ on:
- master
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.10"]
services:
mariadb:
image: mariadb
image: mariadb:10.11
env:
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: yes
MARIADB_DATABASE: test
ports:
- 3307:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
mysql:
image: mysql
image: mysql:8.1
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: test
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
postgres:
image: postgres
image: postgres:15.4
env:
POSTGRES_PASSWORD: test
POSTGRES_USER: test
Expand All @@ -44,7 +44,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install lxml dependencies
if: ${{ matrix.python-version == 'pypy-3.7' }}
if: ${{ matrix.python-version == 'pypy-3.10' }}
run: |
sudo apt-get install libxml2-dev libxslt-dev
- name: Install dependencies
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,10 @@ def get_file_contents(filename):
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'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',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet',
'Topic :: Security',
Expand Down

0 comments on commit 184ff54

Please sign in to comment.