Skip to content

Commit 15529b2

Browse files
authored
Merge pull request #23 from cdce8p/dev
Release v0.3.3
2 parents 9a0e5e3 + 3cc6ab1 commit 15529b2

10 files changed

+17
-9
lines changed

.github/dependabot.yml

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ updates:
66
interval: "daily"
77
labels:
88
- "dependency"
9+
assignees:
10+
- "cdce8p"
911
open-pull-requests-limit: 10
1012

1113
- package-ecosystem: "github-actions"
@@ -14,4 +16,6 @@ updates:
1416
interval: "weekly"
1517
labels:
1618
- "dependency"
19+
assignees:
20+
- "cdce8p"
1721
open-pull-requests-limit: 10

.github/workflows/release.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
python-version: ${{ env.DEFAULT_PYTHON }}
2323
- name: Install requirements
2424
run: |
25-
python -m pip install -U pip setuptools twine wheel
25+
python -m pip install -U pip twine wheel
26+
python -m pip install -U "setuptools>=56.0.0"
2627
- name: Build distributions
2728
run: |
2829
python setup.py sdist bdist_wheel

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -179,4 +179,5 @@ Thumbs.db
179179

180180
# -----
181181
# Custom / Overwrites
182+
!.vscode/settings.default.json
182183
.vscode/settings.json

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/asottile/pyupgrade
3-
rev: v2.11.0
3+
rev: v2.12.0
44
hooks:
55
- id: pyupgrade
66
args: [--py38-plus]

.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{
77
"label": "Build package",
88
"type": "shell",
9-
"command": "rm -rf build dist *.egg-info; source venv/bin/activate; python setup.py sdist bdist_wheel",
9+
"command": "rm -rf build dist *.egg-info; ${command:python.interpreterPath} setup.py sdist bdist_wheel",
1010
"group": {
1111
"kind": "build",
1212
"isDefault": true,

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include requirements.txt
2+
include requirements_black.txt

python_typing_update/const.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from enum import Flag, auto
77
from typing import NamedTuple
88

9-
version = (0, 3, 2)
9+
version = (0, 3, 3)
1010
dev_version = None # Set to `None` for release
1111

1212
version_str = '.'.join(map(str, version))

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
aiofiles==0.6.0
22
autoflake==1.4
33
isort==5.8.0
4-
pyupgrade==2.11.0
4+
pyupgrade==2.12.0
55
reorder-python-imports==2.4.0

requirements_test.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r requirements_test_pre_commit.txt
22
mypy==0.812
3-
pre-commit==2.11.1
4-
pylint==2.7.2
5-
pytest==6.2.2
3+
pre-commit==2.12.0
4+
pylint==2.7.4
5+
pytest==6.2.3
66
pytest-asyncio==0.14.0

requirements_test_pre_commit.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
flake8==3.9.0
22
isort==5.8.0
3-
pyupgrade==2.11.0
3+
pyupgrade==2.12.0

0 commit comments

Comments
 (0)