We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3778035 commit 9c45793Copy full SHA for 9c45793
.github/workflows/release.yml
@@ -34,8 +34,3 @@ jobs:
34
- name: publish
35
uses: pypa/gh-action-pypi-publish@release/v1
36
37
- - name: sign
38
- uses: sigstore/[email protected]
39
- with:
40
- inputs: ./dist/*.tar.gz ./dist/*.whl
41
- release-signing-artifacts: true
.github/workflows/tests.yml
@@ -16,17 +16,8 @@ jobs:
16
strategy:
17
fail-fast: false
18
matrix:
19
- python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
+ python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
20
os: ["macos-latest", "windows-latest", "ubuntu-latest"]
21
- # Use the macos-13 runner for 3.7, since 3.7 is not currently available
22
- # on ARM64 macOS runners (i.e. 14+).
23
- # See: https://github.com/actions/setup-python/issues/856
24
- exclude:
25
- - python-version: "3.7"
26
- os: "macos-latest"
27
- include:
28
29
- os: "macos-13"
30
31
steps:
32
- uses: "actions/checkout@v4"
pyproject.toml
@@ -24,17 +24,17 @@ classifiers = [
"Environment :: Web Environment",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
- "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 :: 3.12",
+ "Programming Language :: Python :: 3.13",
33
"Topic :: Internet :: WWW/HTTP",
]
keywords = ["requests", "http", "caching", "web"]
dependencies = ["requests >= 2.16.0", "msgpack >= 0.5.2, < 2.0.0"]
-requires-python = ">=3.7"
+requires-python = ">=3.8"
[project.urls]
Homepage = "https://pypi.org/project/CacheControl/"
@@ -78,4 +78,3 @@ ignore_missing_imports = true
78
79
[tool.pytest.ini_options]
80
norecursedirs = ["bin", "lib", "include", "build"]
81
-
0 commit comments