Skip to content

Commit 7957a60

Browse files
authored
Merge pull request #45 from Embarcadero/docs
Doc files and more
2 parents a005419 + 11295e2 commit 7957a60

30 files changed

+364000
-10
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Disable any line endings auto conversion.
2+
* -text

.github/workflows/deploy-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
22+
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
2323
include:
2424
- os: [windows-latest]
2525
arch: ["x86"]
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ${{ matrix.os }}
5151
strategy:
5252
matrix:
53-
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
53+
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
5454
include:
5555
- os: [windows-latest]
5656
arch: ["AMD64"]

delphivcl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def findmodule():
1010
ossys = platform.system()
1111
libdir = None
1212

13-
if not (pyver in ["3.6", "3.7", "3.8", "3.9", "3.10"]):
13+
if not (pyver in ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]):
1414
raise PyVerNotSupported(f"DelphiVCL doesn't support Python{pyver}.")
1515

1616
if ossys == "Windows":

delphivcl/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.40"
1+
__version__ = "1.0.0"

0 commit comments

Comments
 (0)