Skip to content

Commit

Permalink
QE-11629 publish and launch - p3 (#529)
Browse files Browse the repository at this point in the history
- change to 1.0.0!
- chore - fix GH workflow for test publish
  • Loading branch information
ddl-cedricyoung authored Sep 17, 2024
1 parent 1e564c8 commit 2197c4a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-production.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: publish-production
# publish to test.pypi.org on merge to default branch
# publish to pypi.org on merge to default branch

on:
workflow_dispatch:
Expand Down Expand Up @@ -27,5 +27,5 @@ jobs:
- name: build package
run: |
uv build
- name: publish to test.pypi.org
- name: publish to pypi.org
uses: pypa/gh-action-pypi-publish@release/v1
4 changes: 4 additions & 0 deletions .github/workflows/publish-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
with:
ref: main
fetch-depth: 0
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v2
with:
version: "latest"
- name: Install cucu with Python 3.12
run: |
uv sync -p 3.12
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project closely adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.0.0
- change to 1.0.0!
- chore - fix GH workflow for test publish

## 0.207.0
- chore - prep for publish - p2
- replace poetry with uv
Expand Down
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ to drive various underlying tools/frameworks to create real world testing scenar
- [Before / After hooks](#before--after-hooks)
- [Custom lint rules](#custom-lint-rules)
- [More Ways To Install Cucu](#more-ways-to-install-cucu)
- [Install From Source](#install-from-source)
- [Install From Build](#install-from-build)

# Installation
Expand Down Expand Up @@ -364,12 +363,6 @@ In the `fix` section one can choose to do `match` and `replace` or to simply

# More Ways To Install Cucu

## Install From Source

Clone this repo locally and then proceed to install python 3.7+ as indicated
earlier. At this point you should be able to simply run `make setup` at the
top level of the source tree and it should install all required dependencies.

## Install From Build

Within the cucu directory you can run `uv build` and that will produce some
Expand All @@ -382,5 +375,5 @@ Successfully built dist/cucu-0.207.0.tar.gz and dist/cucu-0.207.0-py3-none-any.w
```

At this point you can install the file `dist/cucu-0.1.0.tar.gz` using
`pip install ....tar.gz` anywhere you'd like and have the `cucu` tool ready to
`pip install .../cucu/dist/cucu-*.tar.gz` anywhere you'd like and have the `cucu` tool ready to
run.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cucu"
version = "0.207.0"
version = "1.0.0"
description = "Easy BDD web testing"
readme = "README.md"
license = { text = "The Clear BSD License" }
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2197c4a

Please sign in to comment.