Skip to content

Commit

Permalink
WIP: Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainmouquet committed Oct 11, 2024
1 parent 380ae29 commit b94a5e8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,12 @@ jobs:
run: uv venv --python ${{ matrix.python-version }}
- name: Install dependencies
run: make install
env:
PYTHON_VERSION: ${{ matrix.python-version }}
- name: Build
run: VERSION=0.0.1 make build
env:
PYTHON_VERSION: ${{ matrix.python-version }}
- name: Run tests
run: make test
env:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ wip:
# Install command
.PHONY: install
install:
uv sync --all-extras --dev
uv sync --python $${PYTHON_VERSION:-3.13} --all-extras --dev

# Build command
.PHONY: build
Expand All @@ -28,7 +28,7 @@ build: check-version
./scripts/version.sh "${VERSION}"
@cat pyproject.toml | grep version
@cat pydocks/__init__.py | grep version
uv build
uv build --python $${PYTHON_VERSION:-3.13}

.PHONY: check-version
check-version:
Expand Down
2 changes: 1 addition & 1 deletion pydocks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.0"
__version__ = "0.0.1"
__all__ = (
"__version__",
"postgresql_clean_all_containers",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pydocks"
version = "1.0.0"
version = "0.0.1"
description = "Pytest fixures for running tests with Docker containers"
authors = [{name = "Sylvain Mouquet", email = "[email protected]"}]
readme = "README.md"
Expand Down

0 comments on commit b94a5e8

Please sign in to comment.