Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
72cae1c
Implemetation of v1.1.0
alexvbrdn Sep 28, 2025
a8dd099
update readme + add tests + caching
alexvbrdn Sep 29, 2025
41a01b3
readme wip
alexvbrdn Oct 8, 2025
96626c6
Add dotenv
alexvbrdn Oct 13, 2025
8cb340e
Env variables should be read in initialize
alexvbrdn Oct 13, 2025
da3bdf7
Update readme
alexvbrdn Oct 13, 2025
360cbd4
Update readme
alexvbrdn Oct 13, 2025
6ad21e7
update readme
alexvbrdn Oct 13, 2025
0a7b773
update readme
alexvbrdn Oct 13, 2025
63ff2b6
update readme
alexvbrdn Oct 13, 2025
58a8146
update readme
alexvbrdn Oct 13, 2025
8415d28
update readme
alexvbrdn Oct 13, 2025
b4e4514
update readme
alexvbrdn Oct 13, 2025
bee9113
Update README.md
alexvbrdn Oct 14, 2025
b8fa994
Update README.md
alexvbrdn Oct 14, 2025
585c8bd
Update project
alexvbrdn Oct 14, 2025
5a5ef35
Add missing repeat
alexvbrdn Oct 17, 2025
03a5bca
Improve testing
alexvbrdn Oct 19, 2025
a150a82
Update README.md
alexvbrdn Oct 21, 2025
85f3604
Remove get_details
alexvbrdn Oct 26, 2025
5db1321
WIP: new client architecture
alexvbrdn Mar 11, 2026
22b2d4f
Update the library structure
alexvbrdn Mar 15, 2026
bea97db
Update error handling
alexvbrdn Mar 15, 2026
6e55a66
Update workflow
alexvbrdn Mar 15, 2026
06b3814
Update README.md
alexvbrdn Mar 16, 2026
c59c88e
Add logging
alexvbrdn Mar 16, 2026
b5ef629
Update generate strings
alexvbrdn Mar 18, 2026
a894e41
Update generate_strings
alexvbrdn Mar 18, 2026
75ac4a2
Update test name
alexvbrdn Mar 18, 2026
0d75cac
Update generate_strings
alexvbrdn Mar 21, 2026
008eb09
Update generate_strings
alexvbrdn Mar 21, 2026
c0c38f2
Update wrapper
alexvbrdn Mar 22, 2026
8c3441a
Update README.md
alexvbrdn Mar 22, 2026
df78f88
Update README.md
alexvbrdn Mar 22, 2026
76b6cce
small refactoring
alexvbrdn Mar 24, 2026
ed506e2
Update library
alexvbrdn Mar 29, 2026
f3d68ca
Update README.md
alexvbrdn Mar 29, 2026
5e1a38d
Remove GEMINI.md
alexvbrdn Mar 29, 2026
cc1ce06
Update library
alexvbrdn Apr 6, 2026
dd30901
Update README
alexvbrdn Apr 12, 2026
7b28894
Update possible errors
alexvbrdn Apr 13, 2026
af7f0e2
Update endpoints
alexvbrdn Jun 14, 2026
6ec42eb
Add new error
alexvbrdn Jun 15, 2026
c32f8e3
Fix some issues
alexvbrdn Jul 25, 2026
4af4ce3
Align repo with the Java and JS SDKs, and make the lint gate pass
alexvbrdn Jul 25, 2026
d5622a6
Update library
alexvbrdn Aug 4, 2026
06299eb
Drop support for python 3.9
alexvbrdn Aug 8, 2026
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
10 changes: 10 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[flake8]
max-line-length = 120
# E203 (whitespace before ':') conflicts with black's slice formatting.
extend-ignore = E203
extend-exclude =
regexsolver/_generated,
.venv,
venv,
build,
dist
57 changes: 57 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
lint:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"

- name: Lint with flake8
run: flake8 regexsolver tests

- name: Type check with mypy
run: mypy regexsolver

test:
name: Test (Python ${{ matrix.python-version }})
needs: lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"

- name: Run tests with pytest
run: pytest
116 changes: 70 additions & 46 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,49 +1,73 @@
name: Publish to PyPi
name: Publish to PyPI

on:
push:
tags:
- 'v*'
push:
tags:
- "v*"

jobs:
build:
name: Build distribution
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
publish-to-pypi:
name: Publish to PyPI
needs:
- build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/regexsolver
permissions:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
test:
name: Test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"

- name: Run tests with pytest
run: pytest

build:
name: Build distribution
needs: test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Install pypa/build
run: python3 -m pip install build --user

- name: Build a binary wheel and a source tarball
run: python3 -m build

- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/

publish:
name: Publish to PyPI
needs: build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/regexsolver
permissions:
id-token: write

steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/

- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
32 changes: 0 additions & 32 deletions .github/workflows/python.yml

This file was deleted.

Loading
Loading