Skip to content

Commit 5070c50

Browse files
authored
ci: Python 3.11 support, libvcs 0.20.0 (#409)
2 parents 75af188 + 6bdece1 commit 5070c50

File tree

7 files changed

+27
-11
lines changed

7 files changed

+27
-11
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.10"]
13+
python-version: ["3.11"]
1414
steps:
1515
- uses: actions/checkout@v3
1616

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
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.9", "3.10"]
12+
python-version: ["3.9", "3.11"]
1313
steps:
1414
- uses: actions/checkout@v3
1515

@@ -54,7 +54,7 @@ jobs:
5454

5555
strategy:
5656
matrix:
57-
python-version: ["3.10"]
57+
python-version: ["3.11"]
5858

5959
steps:
6060
- uses: actions/checkout@v3

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.10.7 3.9.13
1+
3.11.0 3.10.7 3.9.13

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
poetry 1.2.1
2-
python 3.10.7 3.9.13
2+
python 3.11.0 3.10.7 3.9.13

CHANGES

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,20 @@ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force
1515
// Usage: vcspull@next sync [config]
1616
```
1717

18-
## vcspull v1.18.x (unreleased)
18+
## vcspull v1.19.x (unreleased)
1919

2020
- _Notes on upcoming releases will be added here_
2121

2222
<!-- Maintainers, insert changes / features for the next release here -->
2323

24+
## vcspull v1.18.0 (2022-10-31)
25+
26+
### Python 3.11 support (#409)
27+
28+
- Bump libvcs 0.19.1 -> 0.20.0
29+
30+
Adds python 3.11 support
31+
2432
## vcspull v1.17.1 (2022-10-23)
2533

2634
**Maintenance release, no features or fixes**

poetry.lock

Lines changed: 11 additions & 4 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3",
1616
"Programming Language :: Python :: 3.9",
1717
"Programming Language :: Python :: 3.10",
18+
"Programming Language :: Python :: 3.11",
1819
"Topic :: Utilities",
1920
"Topic :: System :: Shells",
2021
]
@@ -59,7 +60,7 @@ vcspull = 'vcspull:cli.cli'
5960

6061
[tool.poetry.dependencies]
6162
python = "^3.9"
62-
libvcs = "~0.19.1"
63+
libvcs = "~0.20.0"
6364
colorama = ">=0.3.9"
6465
PyYAML = "^6.0"
6566

0 commit comments

Comments
 (0)