Skip to content

Commit

Permalink
Merge pull request #23 from cdce8p/dev
Browse files Browse the repository at this point in the history
Release v0.3.3
  • Loading branch information
cdce8p authored Apr 10, 2021
2 parents 9a0e5e3 + 3cc6ab1 commit 15529b2
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 9 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ updates:
interval: "daily"
labels:
- "dependency"
assignees:
- "cdce8p"
open-pull-requests-limit: 10

- package-ecosystem: "github-actions"
Expand All @@ -14,4 +16,6 @@ updates:
interval: "weekly"
labels:
- "dependency"
assignees:
- "cdce8p"
open-pull-requests-limit: 10
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install requirements
run: |
python -m pip install -U pip setuptools twine wheel
python -m pip install -U pip twine wheel
python -m pip install -U "setuptools>=56.0.0"
- name: Build distributions
run: |
python setup.py sdist bdist_wheel
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,5 @@ Thumbs.db

# -----
# Custom / Overwrites
!.vscode/settings.default.json
.vscode/settings.json
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.11.0
rev: v2.12.0
hooks:
- id: pyupgrade
args: [--py38-plus]
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
"label": "Build package",
"type": "shell",
"command": "rm -rf build dist *.egg-info; source venv/bin/activate; python setup.py sdist bdist_wheel",
"command": "rm -rf build dist *.egg-info; ${command:python.interpreterPath} setup.py sdist bdist_wheel",
"group": {
"kind": "build",
"isDefault": true,
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include requirements.txt
include requirements_black.txt
2 changes: 1 addition & 1 deletion python_typing_update/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from enum import Flag, auto
from typing import NamedTuple

version = (0, 3, 2)
version = (0, 3, 3)
dev_version = None # Set to `None` for release

version_str = '.'.join(map(str, version))
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiofiles==0.6.0
autoflake==1.4
isort==5.8.0
pyupgrade==2.11.0
pyupgrade==2.12.0
reorder-python-imports==2.4.0
6 changes: 3 additions & 3 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r requirements_test_pre_commit.txt
mypy==0.812
pre-commit==2.11.1
pylint==2.7.2
pytest==6.2.2
pre-commit==2.12.0
pylint==2.7.4
pytest==6.2.3
pytest-asyncio==0.14.0
2 changes: 1 addition & 1 deletion requirements_test_pre_commit.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
flake8==3.9.0
isort==5.8.0
pyupgrade==2.11.0
pyupgrade==2.12.0

0 comments on commit 15529b2

Please sign in to comment.