Skip to content

Commit

Permalink
Merge pull request #65 from carsonyl/cib2
Browse files Browse the repository at this point in the history
Add Python 3.10, 3.11 to CIB.
  • Loading branch information
carsonyl authored Nov 9, 2022
2 parents 9cfc959 + 9bee587 commit 0e403cd
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10', 3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheel-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.16.1 (2022-11-08)
-------------------

- Disable ``tldextract`` caching. (#64) Thanks @mpkuth.


0.16.0 (2022-01-01)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion pypac/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from pypac.api import get_pac, collect_pac_urls, download_pac, PACSession, pac_context_for_url


__version__ = "0.16.0"
__version__ = "0.16.1"


__all__ = ["get_pac", "collect_pac_urls", "download_pac", "PACSession", "pac_context_for_url"]
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
name = PyPAC
# attr: pypac.__version__ via AST added in setuptools 46.4+, which doesn't support PY27.
version = 0.16.0
version = 0.16.1
author = Carson Lam
author_email = [email protected]
description = Proxy auto-config and auto-discovery for Python.
Expand All @@ -20,6 +20,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Internet
Environment :: Web Environment
Intended Audience :: Developers
Expand Down

0 comments on commit 0e403cd

Please sign in to comment.