Skip to content

Commit e595967

Browse files
committed
more print debugging for copy step in windows
1 parent 1451012 commit e595967

File tree

6 files changed

+69
-1
lines changed

6 files changed

+69
-1
lines changed

.github/workflows/build-binary-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
cabal v1-install --only-dependencies -fserver
221221
cabal v1-configure -fserver
222222
cabal v1-build
223-
dir /s dist
223+
Get-ChildItem -Recurse
224224
copy dist\build\gf\gf.exe C:\tmp-dist
225225
226226
- name: Upload artifact

download/release-3.12.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: GF 3.12 Release Notes
3+
date: 03 August 2025
4+
---
5+
6+
## Installation
7+
8+
See the [download page](index-3.12.html).
9+
10+
## What's new
11+
This release adds support for Apple Silicon M1 Mac computers and newer versions of GHC, along with various improvements and bug fixes.
12+
13+
Over 70 commits have been merged to gf-core since the release of GF 3.11 in July 2021.
14+
15+
## General
16+
- Support for ARM, allowing to run GF on Mac computers with Apple Silicon M1
17+
- Support for newer versions of GHC (8.10.7, 9.0.2, 9.2.4, 9.4, 9.6.7)
18+
- Support compiling with Nix
19+
- Better error messages
20+
- Improvements to several GF shell commands
21+
- Several bug fixes and performance improvements
22+
- TODO: no Java bindings
23+
24+
## GF compiler and run-time library
25+
- Syntactic sugar for table update: `table {cases ; vvv => t \! vvv}.t` can now be written as `t ** { cases }`
26+
- Adjust the `-view` command depending on the OS
27+
- Improve output of the `visualize_dependencies` (`vd`) command for large dependency trees
28+
- Reintroduce syntactic transfer with `pt -transfer` and fix a bug in `pt -compute`
29+
- Bug fix: apply `gt` to all arguments when piped
30+
- Fix many "Invalid character" messages by always encoding GF files in UTF-8
31+
- Improve performance with long extend-lists
32+
- Improve syntax error messages
33+
- Add support for BIND tokens in the Python bindings
34+
- Allow compilation with emscripten
35+
36+
## Other
37+
- Add support for Visual Studio Code
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Metadata-Version: 2.4
2+
Name: pgf
3+
Version: 1.0
4+
Summary: Python bindings to the Grammatical Framework's PGF runtime
5+
Home-page: https://www.grammaticalframework.org/
6+
Author: Krasimir Angelov
7+
Author-email: [email protected]
8+
License: BSD
9+
Dynamic: author
10+
Dynamic: author-email
11+
Dynamic: description
12+
Dynamic: home-page
13+
Dynamic: license
14+
Dynamic: summary
15+
16+
Grammatical Framework (GF) is a programming language for multilingual grammar applications.
17+
This package provides Python bindings to GF runtime, which allows you to parse and generate text using GF grammars compiled into the PGF format.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
INSTALL
2+
README.org
3+
pypgf.c
4+
setup.py
5+
test.py
6+
examples/README
7+
examples/gf_utils.py
8+
examples/translation_pipeline.py
9+
pgf.egg-info/PKG-INFO
10+
pgf.egg-info/SOURCES.txt
11+
pgf.egg-info/dependency_links.txt
12+
pgf.egg-info/top_level.txt
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pgf

0 commit comments

Comments
 (0)