Skip to content

Commit

Permalink
Slightly late update of uap-core to 0.18.0
Browse files Browse the repository at this point in the history
See ua-parser/uap-core@v0.16.0...v0.18.0
for the upstream changelog

Also remove 2.7 and 3.6 from the changelog as they're not accessible
from setup-python anymore, we'd need to e.g. install them by hand
using pyenv if we want to keep them (which might be a good idea but
it's not like anyone is touching the 0.x code so changes of breakage
are low anyway).

- actions/setup-python#672
- actions/setup-python#544
  • Loading branch information
masklinn committed Jul 8, 2023
1 parent 52053d5 commit ae6398d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-alpha - 3.11", "pypy-3.8"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"]
pyyaml-version: ["5.1.*", "5.4.*", "6.0.*", "6.*"]
exclude:
- python-version: 2.7
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-alpha - 3.11", "pypy-3.8"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"]

steps:
- name: Checkout working copy
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class sdist(_sdist):

setup(
name="ua-parser",
version="0.16.1",
version="0.18.0",
description="Python port of Browserscope's user agent parser",
author="PBS",
author_email="no-reply@pbs.org",
Expand Down

2 comments on commit ae6398d

@AntonArsentiev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello everyone!

Will you officially support python 3.11?

There is maximum python3.10 version in setup.py file.

@masklinn
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should install and run fine on 3.11, and almost certainly 3.12 as well. I apparently missed updating the classifier categories, but as far as I can tell that doesn't actually matter, they're just informative.

Please sign in to comment.