Skip to content

Commit

Permalink
Fix python_required
Browse files Browse the repository at this point in the history
Also update PyVCG, which include a similar fix.
  • Loading branch information
florianschanda committed Sep 17, 2023
1 parent fbc5226 commit 64f6084
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ generated in the following situations:

* Fix a spurious space in the summary output.

* Fix support for Python 3.11. The package can now be installed
without issues.

### 1.1.10

* [TRLC] Fix missing typechecks for numeric subtypes on value
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
required_packages = []
python_required = ">=3.8, <4"
if "--plat-name" in sys.argv or "-p" in sys.argv:
required_packages.append("PyVCG==1.0.4")
python_required = ">=3.8, <=3.11"
required_packages.append("PyVCG==1.0.5")
python_required = ">=3.8, <3.12"

setuptools.setup(
name="trlc",
Expand Down

0 comments on commit 64f6084

Please sign in to comment.