-
Notifications
You must be signed in to change notification settings - Fork 5
Fix anonymizers based on NumericFieldAnonymizer #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,22 +24,24 @@ def read(fname): | |
| classifiers=[ | ||
| 'Development Status :: 3 - Alpha', | ||
| 'Framework :: Django', | ||
| 'Framework :: Django :: 1.10', | ||
| 'Framework :: Django :: 1.11', | ||
| 'Framework :: Django :: 2.0', | ||
| 'Framework :: Django :: 2.1', | ||
| 'Framework :: Django :: 4.2', | ||
| 'Framework :: Django :: 5.1', | ||
| 'Framework :: Django :: 5.2', | ||
| 'Intended Audience :: Developers', | ||
| 'License :: OSI Approved :: MIT License', | ||
| 'Operating System :: OS Independent', | ||
| 'Programming Language :: Python', | ||
| 'Programming Language :: Python :: 3.6', | ||
| 'Programming Language :: Python :: 3.7', | ||
| 'Programming Language :: Python :: 3.10', | ||
| 'Programming Language :: Python :: 3.11', | ||
| 'Programming Language :: Python :: 3.12', | ||
| 'Programming Language :: Python :: 3.13', | ||
| 'Programming Language :: Python :: 3.14', | ||
| 'Programming Language :: Python :: 3 :: Only', | ||
| 'Intended Audience :: Developers', | ||
| 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | ||
| ], | ||
| python_requires='>=3.10', | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm setting 3.10 as the minimum version because:
|
||
| install_requires=[ | ||
| 'django>=4.2', | ||
| 'django>=4.2,<6', | ||
| 'skip-django-chamber>=0.7.2', | ||
| 'tqdm>=4.28.1', | ||
| 'pyaes>=1.6.1', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,8 @@ flake8==3.8.4 | |
| mypy==0.991 | ||
| python-dateutil==2.7.5 | ||
| django-extensions | ||
| freezegun==0.3.12 | ||
| freezegun | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The old version doesn't work in Python >= 3.13. |
||
| Faker==1.0.1 | ||
| skip-django-germanium==2.4.0 | ||
| skip-django-germanium==2.6.0 | ||
| django-auditlog | ||
| setuptools | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Needed for Python >= 3.12. |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a duplicate definition.