Skip to content
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

Revert "SCALRCORE-32679 Add python3.13 support" #33

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- [ubuntu-latest, manylinux, "x86_64 aarch64"]
- [macos-13, macosx, x86_64]
- [macos-14, macosx, arm64]
python: ["cp38", "cp39", "cp310", "cp311", "cp312", "cp313]
python: ["cp38", "cp39", "cp310", "cp311", "cp312"]

steps:
- name: Checkout
Expand All @@ -78,7 +78,7 @@ jobs:

- name: Build wheels on linux
if: ${{ matrix.buildplat[1] == 'manylinux' }}
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.19.2
env:
CIBW_ENVIRONMENT: PATH=$(pwd)/go/bin:$PATH
CIBW_BEFORE_BUILD: sh pre-build-command.sh
Expand All @@ -88,7 +88,7 @@ jobs:

- name: Build wheels on macos
if: ${{ matrix.buildplat[1] == 'macosx' }}
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_ENVIRONMENT: PATH=$(pwd)/go/bin:$PATH
CIBW_BEFORE_BUILD: sh pre-build-command.sh
Expand Down
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
[![pygohcl python package](https://github.com/Scalr/pygohcl/actions/workflows/default.yml/badge.svg)](https://github.com/Scalr/pygohcl/actions/workflows/default.yml)

# pygohcl

Python wrapper for [hashicorp/hcl](https://github.com/hashicorp/hcl) (v2).

## Requirements

The following versions are supported - 3.8, 3.9, 3.10, 3.11, 3.12, 3.13.
The following versions are supported - 3.8, 3.9, 3.10, 3.11, 3.12.

## Setup

```sh
pip install pygohcl
```

## Usage

```py
>>> import pygohcl
>>> pygohcl.loads("""variable "docker_ports" {
Expand All @@ -36,9 +32,7 @@ pip install pygohcl
```

## Building locally

You can use the following commands to build a wheel for your platform:

```sh
pip install wheel
python setup.py bdist_wheel
Expand Down
2 changes: 1 addition & 1 deletion build-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -e

mkdir -p ./macos-dist
rm -fr ./macos-dist/*.whl
for VERSION in 3.8.10 3.9.16 3.10.10 3.11.3 3.12.0, 3.13.0
for VERSION in 3.8.10 3.9.16 3.10.10 3.11.3 3.12.0
do
# Assumes that all python version are pre-installed.
# pyenv install -v ${VERSION}
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
],
packages=find_packages(),
Expand Down
Loading