Skip to content

Commit 96456cd

Browse files
committed
compat!: Drop 3.7 and 3.8
1 parent 53ededb commit 96456cd

File tree

6 files changed

+24
-97
lines changed

6 files changed

+24
-97
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [ '3.7', '3.10' ]
10+
python-version: [ '3.10' ]
1111
steps:
1212
- uses: actions/checkout@v1
1313
- name: Set up Python ${{ matrix.python-version }}

.python-version

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Changelog
22

3-
## Current
3+
To install the unreleased libvcs version, see
4+
[developmental releases](https://libvcs.git-pull.com/quickstart.html#developmental-releases).
5+
6+
[pip](https://pip.pypa.io/en/stable/):
7+
8+
```console
9+
$ pip install --user --upgrade --pre libvcs
10+
```
11+
12+
## current - unrelased
13+
14+
### Compatibility
15+
16+
- Python 3.7 and 3.8 dropped (#308)
417

518
- _Add your latest changes from PRs here_
619

poetry.lock

Lines changed: 5 additions & 89 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ classifiers = [
1414
"Operating System :: MacOS :: MacOS X",
1515
"Programming Language :: Python",
1616
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3.7",
18-
"Programming Language :: Python :: 3.8",
1917
"Programming Language :: Python :: 3.9",
2018
"Programming Language :: Python :: 3.10",
2119
"Programming Language :: Python :: Implementation :: PyPy",
@@ -38,7 +36,7 @@ Repository = "https://github.com/vcs-python/libvcs"
3836
Changes = "https://github.com/vcs-python/libvcs/blob/master/CHANGES"
3937

4038
[tool.poetry.dependencies]
41-
python = "^3.7"
39+
python = "^3.9"
4240

4341
[tool.poetry.dev-dependencies]
4442
### Docs ###
@@ -47,7 +45,7 @@ furo = "^2022.2.23"
4745
sphinx-autobuild = "^2021.3.14"
4846
sphinx-autodoc-typehints = "~1.17.0"
4947
sphinx-issues = "^3.0.0"
50-
sphinx-inline-tabs = { version = "*", python = "^3.7" }
48+
sphinx-inline-tabs = "*"
5149
sphinxext-opengraph = "*"
5250
sphinx-copybutton = "^0.5.0"
5351
sphinxext-rediraffe = "*"

0 commit comments

Comments
 (0)