Skip to content

Commit f24a355

Browse files
authored
compat!: Drop 3.7 and 3.8 (#356)
libvcs: vcs-python/libvcs#308
1 parent bd03d31 commit f24a355

File tree

7 files changed

+31
-70
lines changed

7 files changed

+31
-70
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.7", "3.10"]
12+
python-version: ["3.9", "3.10"]
1313
steps:
1414
- uses: actions/checkout@v1
1515
- name: Set up Python ${{ matrix.python-version }}

.python-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.10.1 3.9.9 3.8.11 3.7.12
1+
3.10.1 3.9.9

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
poetry 1.1.12
2-
python 3.10.1 3.9.9 3.8.11 3.7.12
2+
python 3.10.1 3.9.9

CHANGES

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force
1717

1818
## current - unrelased
1919

20+
### Compatibility
21+
22+
- Python 3.7 and 3.8 dropped (#356)
23+
2024
- _Add your latest changes from PRs here_
2125

2226
## vcspull 1.11.1 (2022-03-12)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ See donation options at <https://git-pull.com/support.html>.
143143

144144
# More information
145145

146-
- Python support: >= 3.7, pypy
146+
- Python support: >= 3.9, pypy
147147
- VCS supported: git(1), svn(1), hg(1)
148148
- Source: <https://github.com/vcs-python/vcspull>
149149
- Docs: <https://vcspull.git-pull.com>

poetry.lock

+21-62
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ classifiers = [
1313
"Operating System :: MacOS :: MacOS X",
1414
"Programming Language :: Python",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.7",
17-
"Programming Language :: Python :: 3.8",
1816
"Programming Language :: Python :: 3.9",
1917
"Programming Language :: Python :: 3.10",
2018
"Topic :: Utilities",
@@ -41,7 +39,7 @@ Changes = "https://github.com/vcs-python/vcspull/blob/master/CHANGES"
4139
vcspull = 'vcspull:cli.cli'
4240

4341
[tool.poetry.dependencies]
44-
python = "^3.7"
42+
python = "^3.9"
4543
click = ">=7<8.1"
4644
kaptan = "*"
4745
libvcs = "~0.11.1"
@@ -55,7 +53,7 @@ sphinx-autobuild = "^2021.3.14"
5553
sphinx-autodoc-typehints = "~1.17.0"
5654
sphinx-click = "*"
5755
sphinx-issues = "^3.0.0"
58-
sphinx-inline-tabs = { version = "*", python = "^3.7" }
56+
sphinx-inline-tabs = "*"
5957
sphinxext-opengraph = "*"
6058
sphinx-copybutton = "^0.5.0"
6159
sphinxext-rediraffe = "*"

0 commit comments

Comments
 (0)