Skip to content

Commit

Permalink
I tire of this
Browse files Browse the repository at this point in the history
  • Loading branch information
rnag committed Dec 17, 2024
1 parent 03d3936 commit 34dea81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ requirements:
- setuptools
run:
- python
- typing-extensions >=4.9.0 # [py<=311]
- typing-extensions >=4.9.0 # [py<=312]

test:
imports:
Expand Down Expand Up @@ -79,7 +79,7 @@ about:
The dataclass-wizard is pure Python code that relies entirely on
stdlib, with the only added dependency being
`typing-extensions` <https://pypi.org/project/typing-extensions/>
for Python 3.11 and below.
for Python 3.12 and below.
doc_url: https://{{ name }}.readthedocs.io/
dev_url: {{ repo_url }}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
packages = find_packages(include=[package_name, f'{package_name}.*'])

requires = [
'typing-extensions>=4.9.0; python_version == "3.9" or python_version == "3.10" or python_version == "3.11"',
'typing-extensions>=4.9.0; python_version <= "3.12"'
]

if (requires_dev_file := here / 'requirements-dev.txt').exists():
Expand Down

0 comments on commit 34dea81

Please sign in to comment.