This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from seandstewart/sean/198/update-typing-exte…
…nsions Update typing-extensions, plus a few fixes for other breaking changes in Python.
- Loading branch information
Showing
9 changed files
with
1,379 additions
and
1,126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ jobs: | |
matrix: | ||
os: [ubuntu-latest] | ||
python-version: ["3.9"] | ||
poetry-version: ["1.4.2"] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -22,12 +23,10 @@ jobs: | |
- name: Display Python version | ||
run: python -c "import sys; print(f'Python {sys.version} on {sys.platform}')" | ||
|
||
- name: Install Linux dependencies | ||
run: | | ||
./.github/ubuntu-install.sh | ||
- name: Install Poetry | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: ${{ matrix.poetry-version }} | ||
|
||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
python-version: ["3.7", "3.8", "3.9", "3.10.0-alpha - 3.10"] | ||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Set up Python-${{ matrix.python-version }} (Platform ${{ matrix.os }}) | ||
|
@@ -38,6 +38,8 @@ jobs: | |
python-version: 3.7 | ||
- name: Install Poetry | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.4.2 | ||
- name: Build sdist | ||
run: poetry build -f sdist | ||
- name: Store dist artifacts | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "typical" | ||
packages = [{include = "typic"}] | ||
version = "2.8.0" | ||
version = "2.8.1" | ||
description = "Typical: Python's Typing Toolkit." | ||
authors = ["Sean Stewart <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -35,7 +35,7 @@ pendulum = "^2.1" | |
fastjsonschema = {version = "^2.14", optional = true} | ||
ujson = {version = ">=2.0", optional = true} | ||
orjson = {version = "^3.6.3", optional = true} | ||
typing-extensions = {version = "^3.10.0", python = "<3.10"} | ||
typing-extensions = {version = "^4", python = "<3.10"} | ||
# tests | ||
pytest = {version = "^6.2", optional = true} | ||
pytest-cov = {version = "^2.8", optional = true} | ||
|
@@ -158,7 +158,7 @@ requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" | ||
|
||
[bumpver] | ||
current_version = "v2.8.0" | ||
current_version = "v2.8.1" | ||
version_pattern = "vMAJOR.MINOR.PATCH[-TAGNUM]" | ||
commit_message = "bump version to {new_version} [ci skip]" | ||
tag = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
al = typed | ||
|
||
|
||
__version__ = "2.8.0" | ||
__version__ = "2.8.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters