Skip to content

Add Unicode Support #615

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

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
b5bccb3
chore(squash): merge `fix/ci` branch
adam-grant-hendry Oct 17, 2022
6bd488f
feat(unicode): add unicode support
adam-grant-hendry Oct 22, 2022
99b45aa
test(unicode): add tests
adam-grant-hendry Oct 23, 2022
231ff3e
fix(json_config.py): remove unused import
adam-grant-hendry Oct 23, 2022
2ab376f
fix(pythonpackage.yml): use `bash`
adam-grant-hendry Oct 17, 2022
5cff7c3
fix(pythonpackage.yml): undo indent reformatting
adam-grant-hendry Oct 19, 2022
8333aab
test(cli): skip argcomplete activation on Windows
adam-grant-hendry Oct 20, 2022
f1d0d5d
test(argcomplete): fix command
adam-grant-hendry Oct 20, 2022
5a0cd79
bump: version 2.35.0 → 2.36.0
github-actions[bot] Oct 28, 2022
6077e9b
feat: add major-version-zero option to support initial package develo…
jenstroeger Oct 6, 2022
06eaa15
bump: version 2.36.0 → 2.37.0
github-actions[bot] Oct 28, 2022
257b4eb
docs(README.md): update poetry dev dependency usage
Nov 16, 2022
fee433c
docs(README.md): include older version of poetry
Nov 17, 2022
6995cdf
test: fix test case changes due to tomlkit upgrade
Lee-W Nov 28, 2022
725f898
test(bump_command): replace \ as / for windows test cases
Lee-W Nov 28, 2022
fa9a6d8
docs(config.md): list settings first and add missing param
woile Nov 28, 2022
064d580
chore: add Funding
woile Nov 29, 2022
883f969
fix(changelog): allow rev range lookups without a tag format
gsalvatella Nov 27, 2022
37c088c
bump: version 2.37.0 → 2.37.1
github-actions[bot] Nov 30, 2022
e63be68
feat(unicode): add unicode support
adam-grant-hendry Oct 22, 2022
13144e3
fix(scripts): use portable shebang
adam-grant-hendry Oct 19, 2022
a49e096
fix(scripts): use cross-platform POSIX
adam-grant-hendry Oct 19, 2022
6211792
test(cli): skip argcomplete activation on Windows
adam-grant-hendry Oct 20, 2022
41188f2
feat: add major-version-zero option to support initial package develo…
jenstroeger Oct 6, 2022
bf0202d
feat(unicode): add unicode support
adam-grant-hendry Oct 22, 2022
72b8ce6
fix(pythonpackage.yml): use `bash`
adam-grant-hendry Oct 17, 2022
766372c
feat: add major-version-zero option to support initial package develo…
jenstroeger Oct 6, 2022
ef75fe5
test: fix test case changes due to tomlkit upgrade
Lee-W Nov 28, 2022
933037a
feat(unicode): add unicode support
adam-grant-hendry Oct 22, 2022
7dbb29f
feat: add major-version-zero option to support initial package develo…
jenstroeger Oct 6, 2022
ffcb355
feat(unicode): add unicode support
adam-grant-hendry Oct 22, 2022
d963804
Merge branch 'master' into feat/unicode
adam-grant-hendry Dec 3, 2022
2fd5bf5
feat(unicode): add unicode support
adam-grant-hendry Oct 22, 2022
dbc715d
feat: add major-version-zero option to support initial package develo…
jenstroeger Oct 6, 2022
242056b
feat(unicode): add unicode support
adam-grant-hendry Oct 22, 2022
c73827d
feat: add major-version-zero option to support initial package develo…
jenstroeger Oct 6, 2022
271f50b
feat: add major-version-zero option to support initial package develo…
jenstroeger Oct 6, 2022
8602fd0
feat(unicode): add unicode support
adam-grant-hendry Oct 22, 2022
ca3cef4
feat: add major-version-zero option to support initial package develo…
jenstroeger Oct 6, 2022
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
Next Next commit
fix(scripts): use portable shebang
Switch `#!/bin/sh` to `#!/usr/bin/env sh` so scripts work on Windows as well as Linux and MacOS.
  • Loading branch information
adam-grant-hendry committed Dec 3, 2022
commit 13144e30d9787fe89efb5acf400685a3f50ada60
3 changes: 1 addition & 2 deletions scripts/format
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env sh
set -e
#!/usr/bin/env sh -e

export PREFIX="poetry run python -m "

Expand Down
3 changes: 1 addition & 2 deletions scripts/test
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env sh
set -e
#!/usr/bin/env sh -e

export PREFIX='poetry run python -m '
export REGEX='^(?![.]|venv).*'
Expand Down