Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Pytransifex api v3 #7

Merged
merged 35 commits into from
Feb 16, 2023
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
18d074f
Init
why-not-try-calmer Oct 27, 2022
ddd66d5
Protocol -> ABC for better checks in method signatures.
why-not-try-calmer Oct 28, 2022
a31de61
CLI build configuration and documentation.
why-not-try-calmer Oct 30, 2022
4b37808
Better error handling.
why-not-try-calmer Nov 1, 2022
b86857c
Fixed uploading failure.
why-not-try-calmer Nov 1, 2022
9231585
Added remaining tests.
why-not-try-calmer Nov 1, 2022
4762899
Fixing misunderstood method.
why-not-try-calmer Nov 3, 2022
0220928
All tests OK
why-not-try-calmer Nov 3, 2022
4085e48
map_async, aiofiles
why-not-try-calmer Nov 4, 2022
6a34eb5
Cleaned up
why-not-try-calmer Nov 4, 2022
c6e653e
Concurrency simplification and enhancement.
why-not-try-calmer Nov 4, 2022
8fc06fa
CLI interface, CLI tests
why-not-try-calmer Nov 7, 2022
025d643
CLI passing initial tests.
why-not-try-calmer Nov 8, 2022
ca97edf
Fixed last failing test.
why-not-try-calmer Nov 22, 2022
dbbf1cf
Added cleanup for tests.
why-not-try-calmer Nov 22, 2022
760dfef
Added pre-commit, workflow for pytransifex
why-not-try-calmer Dec 1, 2022
b9f1fdf
After running 'pre-commit'.
why-not-try-calmer Dec 1, 2022
ec42fc4
Proper loggin instead of print
why-not-try-calmer Dec 19, 2022
42d0609
Weakened version build requirements
why-not-try-calmer Dec 19, 2022
e625eb4
PluginManager for managing plugins registed by the user to generate c…
why-not-try-calmer Dec 22, 2022
bcbc0dc
Cleanup
why-not-try-calmer Feb 14, 2023
23b6332
ci envars
why-not-try-calmer Feb 14, 2023
0dc475e
Cleanup
why-not-try-calmer Feb 14, 2023
4f62d64
Merge branch 'master' into pytransifex-api_v3
why-not-try-calmer Feb 14, 2023
a944c03
Updated pre-commit config to avoid failure in CI
why-not-try-calmer Feb 15, 2023
076e22e
changed CI trigger to: either PR or push
why-not-try-calmer Feb 15, 2023
ba090a7
Added __main__
why-not-try-calmer Feb 15, 2023
aeb0c27
Added runtime check+exception, explicit Python setup in CI, now requi…
why-not-try-calmer Feb 15, 2023
8a93c4e
with open
why-not-try-calmer Feb 15, 2023
231f41f
Ensuring paths for test inputs
why-not-try-calmer Feb 15, 2023
634f59f
Better error reporting
why-not-try-calmer Feb 15, 2023
99ed7d0
Pushing source files with no matching resource now creates the corres…
why-not-try-calmer Feb 15, 2023
06c031d
Fixing incorrect 'list_resources' method.
why-not-try-calmer Feb 15, 2023
b2d7917
Added return value for 'ping', as I remember it's used in assertions …
why-not-try-calmer Feb 16, 2023
8b8046b
Removed test for 3.10 from __init__
why-not-try-calmer Feb 16, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Removed test for 3.10 from __init__
why-not-try-calmer committed Feb 16, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 8b8046bc9fd092def492d126c6b1a2104f47f983
6 changes: 0 additions & 6 deletions pytransifex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
import logging
from sys import version_info

if version_info.major != 3 or version_info.minor < 10:
raise RuntimeError(
f"This program requires Python 3.10 at least, but found {version_info.major}.{version_info.minor}"
)

logging.basicConfig(level=logging.INFO)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

from setuptools import setup

python_min_version = (3, 8)
python_min_version = (3, 10)

if sys.version_info < python_min_version:
sys.exit(